0 Replies Latest reply on Mar 20, 2014 10:37 PM by wguo

    The script does't be invoked when using markup editor

    wguo

      Hi ,

       

           Now i am fresh about the jbpm6, i create a simple process with start event, one human task and an end event .

           I created the human task form using Markup editor way , and insert a script tag in it . But it looks the script never be invoked . anyone knows the problem ? Thanks .

       

      <div class="form-horizontal">

        <input type="hidden" name="taskId" value="${task.id}"/>

              <p><strong>Please fill in the basic information of new hire </strong></p>

              <p>

                <div class="control-group">

                  <label class="control-label-nh" for="lastName">Last Name</label>

                  <div class="controls">

                    <input type="text" id="lastName" maxlength="110" name="lastName" placeholder="Last Name" required="required">

                    <script>

                        alert('test');

                    </script>

                  </div>

                </div>

              </p>

      </div>