Retrieve Radgrid DetailTable Items from Selected Item in JavaScript
- by Aaron M
I am trying to retrieve all of the children items in a detailtable of an item. I can get the item, but I am having no luck in trying to get the children items.
Here is the relevant code that I have so far
var MasterTable = radgrid.get_masterTableView();
var selectedRows = MasterTable.get_selectedItems();
for (i = 0; i < selectedRows.length; i++) {
var row = selectedRows[i];
}