Tuesday, April 30, 2013

How to retrieve the Selected Record Ids of a Sub Grid in CRM 2011 using javascript

Retrieve the Selected Record Ids of a Sub Grid in CRM 2011 using javascript
Code Snippet:
var gridControl = document.getElementById("yourSubGridName").control;
var ids = gridControl.get_selectedIds();

No comments:

Post a Comment