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”