Hello Sai,
You can refer the below code for calling a nanoflow/microflow from a Javascript snippet using jQuery:
$('.classname').click(function () {
mx.data.action({
params: {
applyto: "selection",
actionname: "ModuleName.ACT_Slot_View",
guids: [$(this).attr('id')]
},
origin: this.mxform,
error: function (error) {
alert(error.message);
}
});
});
Best Regards
Amit Gupta