Remove 'Complete' & 'Save' button from embedded html forms

I finally found an easy solution that is working for me:

Camunda forum - remove save button

Just add the following script somewhere in your static html file and it will remove the complete and save button.

<script cam-script type="text/form-script">
	$scope.options.hideCompleteButton = true;
  </script>
1 Like