Hi,
I have a UltraWebgrid client side event handler registered
CellChangeHandler= myjavasciptfunc
But, when I perform this from the backend
uwg.Rows[rowindex].Cells.FromKey("ColName").Value = "Change to this new value";
My client side event doesnt seem to get triggered, and javascript does not launch. I want my client side to detect a change in cells, even from the backend.
Are there any suggested methods I can use to trigger my client side events??
Thanks in advance!
Chinho
Typically the flow of events is in reverse order of what you have described. The user performs some changes on the client then posts the page to the server and based on the made changes particular server – side events are triggered.