2 Replies Latest reply on Dec 23, 2013 7:24 AM by jocelyn.duc

    Task list remains empty...

    jocelyn.duc

      Hello,

       

      I created a basic business process with a start event, two user tasks and an end event. I also created two task forms with the markup editor. Is that normal that I can't see them in the Form definition left menu?

       

      After deploying my process, I start a new instance form the Process definitions window. The jbpm-console shows me the process form on which I click on the start process button. Then, on the process model view, I can see that the current activitiy (red one) is the first user task, which seems logic. But now, how to fill my first user task form? The task list remains empty?

       

      Thank you for your help

       

      Jo

        • 1. Re: Task list remains empty...
          jsvitak

          Hi,

          please check if you have filled actor or group id in human task properties. You have to be logged in as an actor or as a member of the group to see your tasks.

           

          Jiri

          • 2. Re: Re: Task list remains empty...
            jocelyn.duc

            Hello,

             

            It works now, thank you, I had not filled the actors field.

             

            Now, I can perform the task, but I get a 404 when submitting the form. I created the form with the markup editor and I am not sure what to put in the action filed of the form. Here is my form:

             

            <form action="complete" method="POST" enctype="multipart/form-data">
              <input type="hidden" name="taskId" value="${task.id}"/>
              <div class=""><label for="txt">Your name:</label><input type="text" name="name" id="name"/></div>
              <div class=""><label for="txt">Your email address:</label><input type="text" name="email" id="email"/></div>
              <div class=""><label for="txt">Your birthdate:</label><input type="text" name="birthdate" id="birthdate"/></div>
              <div class=""><input name="Submit" type="submit" value="Continue" id="sb" /></div>
              <div class=""><input name="Cancel" type="button" value="Cancel" id="cb" /></div>
            </form>