Is there a place where I can see some description like sequence, usage and sample for the events of WebHDG.
Please point to the right link. The online documentation is helpfull but do not cover all the events.
Thanks
Hi,
There is a GroupedColumnsChanging and GroupedColumnsChanged server event. In the event args, there is Action which indicates what happened. Adding, moving, sort direction change, or remove. You'd want to only act on Add I guess. You can also get the column from EffectedColumns list. It would be the first item.
regards,
Dave
I was working on a scenario with WebHierarchicalDataGrid. I wanted to get the column that has been dragged to the grouping region. I did the following
<
ig:WebHierarchicalDataGrid ID="gridMain" runat="server">
ClientEvents GroupedColumnsChanged="OnTestFunctionCalled" />
...
</ig:WebHierarchicalDataGrid>
I implemented the client side function and felt that some help doc will be very helpfull. Also can I do the same thing on the server side?
Let me know.
Sudip
I don't think there is one big help document or sample that has all of the events. In particular, are you asking about client events or server-side. For behavior events, they tend to fire in the order that they are in the behaviors collection. Others are more obvious, like -ing events before -ed. If you have a specific scenario, I could answer that.
David Young