I have a GridControl which reads the value from a access database and shows it in it. Whenever i change the value in gridcontrol that value is not posted into access database file ,which is a default behavior of it. the xaml code is:
<dxg:GridControl AutoPopulateColumns="True" Height="600" name = "g1">
and the backend code in c# is :
gridControl2.ItemsSource = new InputBssDataSetTableAdapters.Input_bss1TableAdapter().GetData().DefaultView;
but i want to modify the value of the Access database file whenever i change the value in the gridcontrol.
please suggest me the way to do it.