I am attempting to string tasks together, I am able to get the task ID of the next user task by running the following in a TaskListener Create script:
var system = java.lang.System;
system.out.println(task.id);
Which returns the correct id.
I would then like to update the url in the browser to "ip:port/camunda/app/tasklist/default/#/?task=" + task.id
But because the TaskListener Create script is not running in the browser itself (not sure why to be honest), I don't have 'window.location' available.
Is there a simple solution to this?
For anyone interested we found a solution.
We use the REST api's GET task command, the code looks like this
This code is called when you press start/complete on a task, and the processing is successful (submit-success), then it finds the current user, and searches for the newest task assigned to the user and sets it in the url using window.location.replace We had the issue that the task is not completely created when the code is run immediately, but adding a small delay of 300 (could be smaller, but better safe than sorry) before getting the task id.