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
454
Allow editing a cell by code depends of another cell value
posted

Hi,

     I've created a grid with many column and I've set for many of those columns the property "CellActivation = Activation.NoEdit" and for some column I allow editing

    The problem is, I must allow editing (non-editable cells) depending of the value entered in an editable cell.

    I explain, I've an editable cell binded to a boolean (the grid display by default a checkbox and it's ok). If that checkbox is checked (Set to true) I must allow the user to set a date (the cell nearby) who is not editable by default.

    How can I do shuch things, I've tried many way but the problem is, the CellActivation property is a "UltraWinGridColumn" property so if I set this property to "Activation.AllowEdit" I do not allow edit the cell of the active row, I allow edit the entire column and I don't want to do that.