Using GWT + GXT. Is it possible to change an active row editor state by eg messagebox? I created an event which calls a messagebox with text area and in order to put text from that textarea into grid i need to call rowEditor.stopEditing(true), then manually insert text into data grid, and then perform rowEditor.startEditing(true). So it look like:
re.stopEditing(true);
List<Model> list = data.getModels();
list.get(activeRow).set("key","value");
re.startEditing(activeRow, true);
And it works... But user can not cancel his changes if needed, because they were already saved by re.stopEditing(true);