Hi,
Can we change save and complete button in camunda.
Thanks
Thanks Stephen. i have one more question can we jump back into previous user task once we complete the task
See:
https://docs.camunda.org/manual/7.7/webapps/tasklist/task-lifecycle/
You can only create a new instance of the task once it is completed.
We are using a setting in the $scope in our forms that hides the buttons.
$scope.options.hideCompleteButton = true;
Then you can add your own buttons.
Can you pelase provide the example form?
Thanks
Hello,
can we remove the history tab in tasklist?
Thanks
Open index.html file from tasklist webfolder
and add the following attribute
cam-exclude-plugins=“tasklist.task.detail:task-detail-history”
to below base tag
https://docs.camunda.org/manual/7.7/webapps/cockpit/extend/plugins/#plugin-exclusion-client-side
Thank you for the response.I am using wildfly server in that i cannot see tasklist webfolder option.
it worked in tomcat but i am not sure how to use in wildfly server.
Swarna
In Wildfly, you can find the index.html
file inside the deployed *.WAR file for the camunda webapp. So for 7.7.0, at this location:
$myPath\server\wildfly-10.1.0.Final\standalone\deployments\camunda-webapp-jboss-7.7.0.war\app\tasklist\
Cheers,
Mat
Thanks @homer1980 it worked for me.
Thanks @Matthijs_Burke
Is there any way to put the <base>
tag inside the plugin template?