Oct 7, 2013
camunda BPM: Power to Embedded Taskforms
For everyone out there using embedded task forms in the camunda Tasklist there is great news: The forms are getting way more powerful. The upcoming alpha of camunda 7.1 introduces two extensions for embedded task forms: Client side form validation and form extensions via JavaScript. Form Validation Validation directives provided by AngularJS may now be attached to form fields to activate simple client-side validation constraints for them. The following form field will only accept one of the strings demo, john, mary or peter due to the defined pattern: <input form-field type="string" name="assignee" ng-pattern="/^(demo|john|mary|peter)$<span id="goog_340102718"><span id="goog_340102719">/"</span></span> /> If a user enters an invalid value in a form field the field will be marked as invalid. Additionally the complete task button will be disabled and the form may…