We have grid with row set to inline edit. The row has input type of textbox, dropdown and combobox for different columns. There is save button outside the grid, which is enabled if user edited any row content (uses row dirty property to know if row is edited or not). On click save, grid rows get saved.
The expected behavior we want is to open the row in inline-edit mode if user selects the row. However, since on opening the row in inline edit mode, the row dirty is getting set to true even if values of textbox or dropdown or combobox was not changed. As a result, save button is getting enabled.
Is there a way to set dirty to true only if the value is changed in any one of the input?
The expected behavior we want is to open the row in inline-edit mode if user selects the row. However, since on opening the row in inline edit mode, the row dirty is getting set to true even if values of textbox or dropdown or combobox was not changed. As a result, save button is getting enabled.
Is there a way to set dirty to true only if the value is changed in any one of the input?