Hi,
I'm trying to make databinding work in a GridWeb(1.9.3.0,basic grid, nothing set).
I've construct a dataAdapter to a network SQL Server with all the command(select,add,..).
I bind the data by:
Webworksheet sheet=gridweb.webworksheets[0];
sheet.datasource= adapter.Fill(MyDataTable);
sheet.CreateAutoGeneratedColumns();
sheet.DataBind();
Everything is going fine till here.
I then change the value in a couple of rows and update my dataTable by clicking the submit button, which trigger the code:
adapter.Update((DataTable) sheet.DataSource);
Which is not working because all the row in sheet.DataSource as the state "unchanged".
What am I missing? Is there some configuration to be carefull in the grid or the dataAdapter?
thanks for any help