How to create microflow using typescript or JavaScript

0
Hi,   Can anyone please let me know how to create microflow using typescript or JavaScript?  
asked
2 answers
1

Hello,

You can call javascript actions in nanoflow.
A microflow is always running on the server. Your page executes the javascript code on the client. But in a microflow, you can call a java action.


Please refer the Javascript action documentations for more details.
https://docs.mendix.com/refguide/javascript-action-call/

 

Hope this helps you!!

Thank you.
 

answered
0

Not sure what you mean by “create a microflow”, but if you want to call a microflow from an addon widget or pluggable widget using Javascript, you can use methods as specified in the respective API. 

For addon widgets:  https://apidocs.rnd.mendix.com/9/client/index.html

For pluggable widgets: https://docs.mendix.com/apidocs-mxsdk/apidocs/pluggable-widgets/

 

answered