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
2265
UltraGrid UltraCombo column update grid cell
posted

Hi,

I have an UltraCombo that is used to select items from a list and set a cell value back in the grid.  The grid is bound to a List<MyBusinessObject> data source.

However, the cell is not updated until the user navigates off it where AfterCellUpdate.  I want to update the cell/data source immediately at the point the user has selected a value. 

What is the best way to do this?

Thanks,

Andez

Parents
  • 469350
    Suggested Answer
    Offline posted

    Hi Andez,

    There's no way to commit a single cell to the data source you can only do this for the entire row.

    To commit the row, you call the Update method on the row. You can also use grid.UpdateData to commit all pending changes in all rows.

Reply Children