I want to update selected records based on user inputs on click of button on main page grid of entity. As we cannot do it with dialog so I created a Html page and added the required fields.
On click of button in the JavaScript I am able to get the Guids of the selected records and after that I am opening the Html page and based on inputs provided by user in the Html page i need to update the selected records.But how we can pass the guids to html page. please help me.
function Activate_OnClick(selectedItems) { -------------------------------------> here in the selectedItems I am able to get ids of the selected records
Xrm.Utility.openWebResource("Html/ReactivateRecord");
}
*This post is locked for comments