I have a listGrid.
I have a button that calls saveAllEdits() on the listGrid.
Recently, I have noticed that if I am currently editing a field in the ListGrid, and press the button, then the value currently edited is omitted from the resulting DSRequest call. (And thus, the operation fails, since the given field has no default value.)
If I do a getEditedRecord(0) on the ListGrid, the result is the same: the currently edited value is omitted.
If I press enter first, (so that the editor is hidden, and the edited value is shown), and then press the save button, the value is included in the request.
I think this behavior is new: the same component used to work fine with SmathGWT 2.0 Pro, but it broke after I switched to SmartGWT-EE Eval nightly build.
* * *
Is this the intended behavior?
If yes, what do I have to do so that the currently edited value is included in the save?
Thank you for your help!
I have a button that calls saveAllEdits() on the listGrid.
Recently, I have noticed that if I am currently editing a field in the ListGrid, and press the button, then the value currently edited is omitted from the resulting DSRequest call. (And thus, the operation fails, since the given field has no default value.)
If I do a getEditedRecord(0) on the ListGrid, the result is the same: the currently edited value is omitted.
If I press enter first, (so that the editor is hidden, and the edited value is shown), and then press the save button, the value is included in the request.
I think this behavior is new: the same component used to work fine with SmathGWT 2.0 Pro, but it broke after I switched to SmartGWT-EE Eval nightly build.
* * *
Is this the intended behavior?
If yes, what do I have to do so that the currently edited value is included in the save?
Thank you for your help!
Comment