Hi
I tried to implement an example for the Ultrawebgrid from the samples browser. The one I tried is under Gridview - Editing Data - Row Templates-Custom. I was able to create an usercontrol and whenever the users click the edit I am able to populate the user control from the grid view. Now how can I update that to the database. Do I need to write a client side gridview update.
Thanks
Be sure that you populate the grid with the changes from your edit template - if you're using a custom template you have to not only populate the template from the grid, but the grid from the template.
Once you push the data back into the grid, you'll want to use one of the updating techniques for the grid. Adding an UpdateRow event handler will be your key into finding out when the row data changed. If it's an AJAX enabled grid, that event will fire without requiring a full postback.
Regards,
-Tony