Hi,
I have the following code snippets:
The GroupExpanded and GroupCollapsed never happens, I tried:
Nothing happens.
Am I missing something?
Thanks
I have the following code snippets:
radGrid.ShowGroupPanel = true;radGrid.MasterTableView.GroupLoadMode = GridGroupLoadMode.Client;radGrid.ClientSettings.AllowDragToGroup = true;radGrid.ClientSettings.AllowExpandCollapse = true;radGrid.ClientSettings.ClientEvents.OnGroupExpanded = "GroupExpanded";radGrid.ClientSettings.ClientEvents.OnGroupCollapsed = "GroupCollapsed";radGrid.GroupingSettings.ShowUnGroupButton = true;function GroupExpanded(s, e) { alert('GroupExpanded');}Am I missing something?
Thanks