Rank: Newbie Groups: Member
Joined: 3/2/2011 Posts: 9
|
I know after inline edits I can iterate the rows and identify what needs to be changed in the table. But, is there any Free :) way via a SqlDataSource for this quick demo I am assembling? I have created a SqlDataSource and enabled it for Insert/Edit/Delete. It is attached to the Grid. Is there any way to have the SqlDataSource take care of the updates?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
I do not believe so. You will always need to write code to update your data source with our Grid. This is because ASP.NET DataSource update/insert/delete mechanism is tightly tied to ASP.NET data binding syntax, which works on server side only. Our Grid can do a lot of update on the client side thus can not use server side data binding syntax.
Thanks!
|