Hello,
I am working with the RADGrid and need to catch the OnCollapsed event when a group is collapsed.
I've set the following properties in the grid
function GroupCollapsed(sender, args) {
alert('colapsed');
}
<MasterTableView
EditMode="InPlace"
CommandItemDisplay="Top"
GroupLoadMode="Client"
DataKeyNames="SectionID" >
...
</MasterTableView>
OnRowClick="GroupCollapsed" />
I am working with the RADGrid and need to catch the OnCollapsed event when a group is collapsed.
I've set the following properties in the grid
function GroupCollapsed(sender, args) {
alert('colapsed');
}
EditMode="InPlace"
CommandItemDisplay="Top"
GroupLoadMode="Client"
DataKeyNames="SectionID" >
...
</MasterTableView>
<ClientSettings AllowGroupExpandCollapse="True">
<ClientEvents OnGroupCollapsed="GroupCollapsed"OnRowClick="GroupCollapsed" />
</ClientSettings>
When I click a row I'm seeing the GroupCollapsed function get executed however it does not get executed when I collapse an expanded group, as I would expect.
I'm pretty sure this is just some minor detail I'm missing but I haven't been able to find it yet.
Any input is appreciated.
Thanks in advance,
jeff bryant
I'm pretty sure this is just some minor detail I'm missing but I haven't been able to find it yet.
Any input is appreciated.
Thanks in advance,
jeff bryant