Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 1.27 KB

File metadata and controls

38 lines (25 loc) · 1.27 KB

Camunda Task Forms

This quickstart demonstrates how to use the Camunda Forms feature. Camunda Forms are .form files created in the Camunda Modeler and embedded inside the camunda Tasklist:

Camunda Forms Screenshot

Overview

Where are Camunda Forms added?

Camunda Forms can be added to the web resources of a web application. As we use maven, they are added to the src/main/webapp folder of your project.

How are Camunda Forms referenced?

Camunda Forms are referenced using the camunda:formKey property of a BPMN <startEvent> or a BPMN <userTask>:

<startEvent id="startEvent" camunda:formKey="camunda-forms:app:start-form.form" name="Invoice Received">
  ...
</startEvent>

The attribute can also be set through the properties panel using the camunda Modeler:

Camunda Forms Screenshot Modeler

How to use it?

  1. Checkout the project with Git
  2. Build the project with maven
  3. Deploy the war file to a Camunda Platform Runtime distribution
  4. Go the the Tasklist and start a process instance for the process named "Camunda Forms Quickstart"