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
165
Change in Update behaviour of UltraGridCell
posted

Right now the cell is updated only when it looses focus. This is kind of inappropriate for me?

How to cause EditBox in cell to update when e.g. Enter key is pressed?

How to cause ComboBox in drop-down mode to update cell when an item is selected in drop-down list?

How to cause check-box to update immediatelly when it is checked or unchecked?

I need more prompt updating, not just when the cell looses focus.

Viktor

 

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    To force a row in the grid to commit it's changes to the underlying data source, you can call the Update method on the row. In the case of the CheckBox cell, you could use the CellChange event for this. For the Enter key, you could handle the KeyPress event. For DropDowns, you could use the AfterCellListCloseUp event, or maybe use CellChange.

Children
No Data