0
使用GWT + GXT。是否有可能通過例如messagebox更改活動行編輯器狀態? 我創建了一個事件,它調用一個帶有文本區域的消息框,並且爲了將該textarea的文本放入網格中,我需要調用rowEditor.stopEditing(true),然後手動將文本插入數據網格,然後執行rowEditor.startEditing(true )。 所以它看起來像:gxt 2.2.5更改行編輯器狀態
re.stopEditing(true);
List<Model> list = data.getModels();
list.get(activeRow).set("key","value");
re.startEditing(activeRow, true);
和它的作品...但如果需要的話用戶無法取消他的變化,因爲他們已經被re.stopEditing(真)保存;
所以我想沒有辦法做到這一點.. –