Pass selected rows’ GUIDs to ribbon button in D365 | Ribbon Workbench
Views (929)
Syndicated from - https://d365demystified.com/2020/06/21/pass-selected-rows-guids-to-ribbon-button-in-d365-ribbon-workbench/
Whenever your Ribbon button customization involves doing something to selected records, here’s the most common application that you need to take action on the selected record’s GUIDs.
Here’s how –
CRM Parameter
In Ribbon Workbench, let’s say you have a button command which is attached to a button and it calls a method ‘process’ which looks like this (it will be your method in your case)
- In Commands, Custom JavaScript Action will have a CRM Parameter called as SelectedControlSelectedItemIds [pretty self explanatory
]
And it’ll pass data of the selected GUIDs in my data variable passed to the method.
Read the GUIDs
Here’s my sample code where I intend to read it from the function I used to call when user clicks on the ribbon button
- Now, let’s say I select a few records on the Main Sub-grid where I’ve put my button on.
- Now, on clicking it, it’ll pass the three selected records’ GUIDs to the method that the button is calling. You can read it from the data parameter
- You can further read from this array and use it to perform your operations.
Hope this was easy. Here are some more Ribbon Customization related posts you might want to look at –
- Debug Ribbon button customization using Command Checker in Dynamics 365 CE Unified Interface
- Show Ribbon button only on record selection in Dynamics CRM
- Hide Custom Ribbon Button [Easy Way] – Ribbon Workbench
- [SOLVED] Navigating URL from Ribbon’s custom button in Dynamics for Phones app
- Fix Ribbon icons on the Unified Interface in D365 CE
- D365 Ribbon Button shortcut to open a Document in SharePoint Online
- Pass data to HTML Web Resource using browser’s sessionStorage in Dynamics 365 CE
Thank you!!
This was originally posted here.
*This post is locked for comments