Using Ajax services for grid editing/inserting
-
I am binding a grid with edit/Update templates. On edit/update/insert events there are many text boxes, dropdowns and other grids(data-bound) that gets populated. So the area that's spanned by the update panel is quite vast in the page. That must be the reason for the slow down in page rendering. Could you lead me with some link to any articles or blogs for better alternatives? I have heard about Ajax Services ASP.Net 3.5 and gone through the below link: http://www.codegod.de/webappcodegod/GridView-Javascript-Click-Row-and-Ajax-AID302.aspx[^] It shows how to populate some text boxes on a grid's row click(client-side). But I am confused about other(than textboxes) controls like grids and drop downs. Is it possible to use both these approaches together ie the grid alone will be kept in an update panel and while editing the use the ajax service approach to populate the controls including other grids and drop downs and while inserting/updating read the values from the controls?