1 Reply Latest reply on May 18, 2016 5:33 AM by abhisheksit2004

    HTML Markup Editor in JBPM6.4.0

    abhisheksit2004

      Hello Experts,

       

      I am using jBPM6.4.0 for one of demos to the customers.

       

      I developed UIs using HTML in Markup Editor inside Human Task.

       

      The problem I am facing is that I am getting some attribute values as input from one source(say name,id). In the sense that, I am getting name="John" and id="Cooper".

       

      I have written the below code in HTML but I am unable to set the source values in text fields. When I open Human task, it displays NULL values for 'name' and 'id'.

       

      <!DOCTYPE html>

      <html>

      <head>

          <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

        <meta http-equiv="Content-Script-Type" content="text/javascript" />

        <meta http-equiv="Content-Style-Type" content="text/css" />

       

        <title></title>

      </head>

      <body>

       

        <div class=""><label for="txt">Name:</label><input type="text" name="name" id="txt"/></div>

        <div class=""><label for="txt">ID:</label><input type="text" name="id" id="txt"/></div>

       

      </body>

      </html>

       

      Please suggest ASAP.