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
Hello david burt,
Thank you for posting in our community!
First, I would like to inform you that DisplayLayout has no equivalent in WebDataGrid.
If you'd like to add any client-side handler from the server-side, here is the article that explains who to achieve this goal: How to register more dynamic client side hanlders for Infragistics ASP.NET AJAX Controls.
I also prepared and attached a small isolated sample that demonstrate such kind of solution.