Call a nanoflow from a Javascript action Native mobile

1
is there a way to call nanoflow from a Javascript action in Native mobile? I tried to use mx.data.callNanoflow mx.data.callNanoflow( { nanoflow: "NativeMobile.ACT_Test_2", callback: function(result) { alert("Nanoflow completed with result " + result); }, error: function(error) { alert("error :"+error.message); } }); but I am getting this error  can anyone help me to solve this problem or have another way to call nanoflow dynamically from js action?
asked
1 answers
2

Hi,

You can pass Nanoflow as a parameter, please refer the image below

Also check this https://docs.mendix.com/refguide/javascript-actions/#222-type

 

answered