Reputation: 23
I would like to popup a window with two questions and a button on button click I would like to pass the answers to an action and execute it.
So I created an action with 3 arguments: two arguments are my questions from type Boolean and third is an output argument: Action_TEST
From this point I'm a little bit clueless of what I need to do. Basically I want to popup a window like this one with two Boolean questions and button which will pass the answers to the action and will execute the action.
Upvotes: 1
Views: 6170
Reputation: 22836
submit
buttonXrm.Navigation.openWebResource(webResourceName,windowOptions,data)
submit
button call the action using Xrm.WebApi.online.execute
Upvotes: 3