Hello,
I want to trigger the ColumnSizeChange-Event, to Save the Column-Widhts. But the Event will not be fired, when I resize a column.
Other events like rowchange will be fired.
Can somebody help me?
Thx
I got it, thx for your Input!
How do you add the client side event handler?
Thanks!
In the IntializeLayout Event of the Grid you can add the ClientSideEventHandler:
tdgbGrid.DisplayLayout.ClientSideEvents.AfterColumnSizeChangeHandler = "AfterColumnSizeChange";
Then you have to add the JavaScript Function "AfterColumnSizeChange" in your JavaScript-Code Section.
Hope it helps
Bruno