Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
705
When I update the value of a cell in a ultragrid does the datasource get updated
posted

I set the datasource of an ultragrid to a datatable.  When I update a cell of the ultragrid like ultraGrid1.Cells[0].Value = "test",  then I cast the datasource from the Ultragrid the datatable does not contain the value I just assigned.

Parents
No Data
Reply
  • 69832
    Suggested Answer
    Offline posted

    The UpdateMode property determines when the value is committed to the data source. By default the value is not committed until the user leaves the row on which the change was made. You can cause an immediate update by calling the Update method.

Children
No Data