Hi,
I am using a RadGrid with a MasterTable and 2 Detail Tables. I am binding the detail table client side using the following javascript code.
But the detail table comes blank. Please let me know if I am missing something.
Thanks
Satyaprakash J
I am using a RadGrid with a MasterTable and 2 Detail Tables. I am binding the detail table client side using the following javascript code.
| function HierarchyExpanding(sender, args) { |
| detailTableView = sender.get_detailTables()[2]; |
| WebService.GetDetails(updateDetailTable); |
| } |
| function updateDetailTable(result) { |
| alert("Updating"); |
| alert(result.length); |
| alert(result[0].DealId); // result is a C# List<CustomClass> |
| detailTableView.set_dataSource(result); |
| detailTableView.dataBind(); |
| } |
But the detail table comes blank. Please let me know if I am missing something.
Thanks
Satyaprakash J