When I start a workflow, the task page doesnt come, my page remains ongoing

0
In a microflow I start a workflow and navigate the user to a page. But the target page doesn't come, progress bar remains hanging  and  I get this error:  Cannot read properties of undefined (reading 'id') TypeError: Cannot read properties of undefined (reading 'id')    at Object.<anonymous> (http://localhost:8082/mxclientsystem/mxui/mxui.js?638563741440476842:7:43748)    at Object.o [as onNavigation] (http://localhost:8082/mxclientsystem/mxui/mxui.js?638563741440476842:5:55459)    at g (http://localhost:8082/mxclientsystem/mxui/mxui.js?638563741440476842:7:101958)    at http://localhost:8082/mxclientsystem/mxui/mxui.js?638563741440476842:7:100970
asked
1 answers
0

Workflows are working asynchronously as explained here: here: https://docs.mendix.com/refguide/workflow-engine/#31-instantiation

 

Would you could do to make this work is to direct the user to a form/page that has to be completed -before- the workflow is initiated and from a button or microflow start the workflow (CallWorkflow). Example here: https://docs.mendix.com/refguide/workflow-how-to-configure/#5-triggering-the-workflow-from-a-page

answered