Can we change save and complete button in camunda

Hi,
Can we change save and complete button in camunda.

Thanks

1 Like

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.

1 Like

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.

3 Likes

Can you pelase provide the example form?

Thanks

Hello,
can we remove the history tab in tasklist?

Thanks

1 Like

Hi @Swarna_Latha

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

2 Likes

Thank you for the response.I am using wildfly server in that i cannot see tasklist webfolder option.

1 Like

it worked in tomcat but i am not sure how to use in wildfly server.

Swarna

1 Like

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

2 Likes

Thanks @homer1980 it worked for me.

Thanks @Matthijs_Burke

Is there any way to put the <base> tag inside the plugin template?