Hi,
I'm using a ultraWingrid linked to a ultrawindatasource and using and ultrawingridrowedittemplate. This works fine and it updates the grid just fine. What is the best practice now to get the datachanges back to the the MS access database behind it.
I'm doing this with VB.Net I have used the datasource RowEndEdit event but even in clicking on the de edit selctor icon triggers this event and updates the database which I don't want. Can some-one help me I really stuck on this and cann't find anything in the documentation?
Best Regards
Ronny Gilisen
Hello,
I am just checking about the progress of this issue. Did you solve your issue accordingly to the information that we provided you?
Let me know if you need any further assistance.
rgilbeb said:What is the best practice now to get the datachanges back to the the MS access database behind it.
Hello ,
Could you please take a look at following links about “WinDataSource” in our online help:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2010.2/CLR2.0/html/WinDataSource_Understanding_WinDataSource.html
http://help.infragistics.com/Help/NetAdvantage/WinForms/2010.2/CLR2.0/html/WinDataSource_About_WinDataSource.html
About your second question as far as I understand it you want to cancel the update on data source. To do this you could handle BeforeRowUpdate or BeforeCellUpdate event of the grid and if you set e.Cancel = true; the UltraGrid will cancel its update and the changes shouldn’t apply on the data source.
Let me know if you have any further questions.