hi all
how i can count the records of a subgrid that have a unique value on special column?
for eg the number of city that my contacts are from?
*This post is locked for comments
hi all
how i can count the records of a subgrid that have a unique value on special column?
for eg the number of city that my contacts are from?
*This post is locked for comments
Hi,
You can achieve this by using web api as well to get associated records.
Please see below link:
community.dynamics.com/.../198070
www.inogic.com/.../querying-data-in-microsoft-dynamics-crm-2016-using-web-api
Hope this helps:)
You can do it with JavaScript and Grid events.
You can use the following syntax to get the grid object:
var myGrid = Xrm.Page.getControl("MyGridName");
and the following syntax to get the gridRows:
var allGridEntities = [];
var allRows = Xrm.Page.getControl("MyGridName").getGrid().getRows();
allRows.forEach(function (row, i) {
allGridEntities.push(row.getData().getEntity());
});
See the following link for information on the Grid events:
msdn.microsoft.com/.../dn932126.aspx
Hope this helps...
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,280 Super User 2024 Season 2
Martin Dráb 230,214 Most Valuable Professional
nmaenpaa 101,156