Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
Adding client-side selection event to grid, server-side
posted

Hi,

In migrating a UltraWebGrid to WebdataGrid, we have some server side code which adds a handler client-side:

UltraWebGrid1.DisplayLayout.ClientSideEvents.CellClickHandler = "CellClickHandler";

I cannot find the equivalent for the WebDataGrid however.

I found the following code to add client-side event to the editing, but it is for the cell selection change action that I am after: 

this.WebDataGrid1.Behaviors.EditingCore.EditingClientEvents.RowUpdated = "WebDataGrid1_RowUpdated";

This sounds easy, but I cannot find out how to do it.

Many thanks