How can I call a Microflow from native pluggable widget.

1
I want to call Microflow on click of particular component and  not on any event. Code I am using is as below,   appname(item) {     this.setState({       //setting the filtered newData on datasource       //After setting the data it will automatically re-render the view       text: item.associated_app,     });     mx.data.action({       params: {           actionname: "NativeMobile.Microflow"       },       origin: this.mxform,       callback: function(obj) {           // no MxObject expected           alert("Just petted the cat a little");       },       error: function(error) {           alert("you have"+error.message);       },       onValidation: function(validations) {           alert("There were " + validation.length + " validation errors");       }   });   }   Error I am getting with this code is  “Not Implemented : Action”
asked
1 answers
2

Not sure, but I don’t think it is implemented in the Native actions. If it would, it would probably have been described on this page: https://docs.mendix.com/apidocs-mxsdk/apidocs/pluggable-widgets

Starting from 8.8 a nanoflow can start a microflow, but I also don’t know if you can call a nanoflow from Native.

answered