Hi,
I need to identify the row expanded or collapsed on the client side when the client events "GroupExpanding" or "GroupCollapsing" is called.
<ClientSettings AllowGroupExpandCollapse="true">
<ClientEvents OnGroupExpanding="GroupExpanding" OnGroupCollapsing="GroupCollapsing" />
</ClientSettings>
function GroupExpanding(sender, eventArgs) {
alert("GroupExpanding is fired");
}
function GroupCollapsing(sender, eventArgs) {
alert("GroupCollapsing is being fired");
}
Please let me know how do i identify the row index that was expanded/collapsed, i checked the documentation and found nothing regarding this.
Thanks and regards,
Damodar
I need to identify the row expanded or collapsed on the client side when the client events "GroupExpanding" or "GroupCollapsing" is called.
<ClientSettings AllowGroupExpandCollapse="true">
<ClientEvents OnGroupExpanding="GroupExpanding" OnGroupCollapsing="GroupCollapsing" />
</ClientSettings>
function GroupExpanding(sender, eventArgs) {
alert("GroupExpanding is fired");
}
function GroupCollapsing(sender, eventArgs) {
alert("GroupCollapsing is being fired");
}
Please let me know how do i identify the row index that was expanded/collapsed, i checked the documentation and found nothing regarding this.
Thanks and regards,
Damodar