Hi, I followed the instruction / tutorial on this page http://www.telerik.com/help/aspnet/grid/ongroupexpanded.html but I am not able to get it work. rowObj.ItemIndex is returning "undefined". Any idea?
This event is fired after a group is expanded and when MasterTableView.GroupLoadMode="client".
Fired by |
RadGrid |
Arguments |
N/A |
Can be canceled |
No |
Examples |
ascx/aspx <ClientEvents OnGroupExpanded="GroupExpanded" <script> function GroupExpanded(rowObj) { alert("Expanded row with index: " + rowObj.ItemIndex); } </script> |