2
A
回答
2
當你在CellTable有一個EditTextCell,我假定你的意思是你有這樣整列:
Column<RowObject, String> editTextCellColumn = new Column<RowObject, String>(new EditTextCell()){
@Override
public String getValue(RowObject object) {
// return the value that is supposed to be displayed in the EditTextCell
}
};
如果是這樣的話,你可以簡單地添加該欄目的fieldupdater。每當用戶成功編輯文本單元格時,都會觸發FieldUpdater。
editTextCellColumn.setFieldUpdater(new FieldUpdater<RowObject, String>(){
public void update(int index, final RowObject object, final String value) {
// 'value' is the new value the user entered in the EditTextCell.
// 'object' is the object that contains the old row information.
// 'index' is the current row index of 'object'
// Code for performing whatever you want to do with the new value goes here.
}
};
相關問題
- 1. GWT EditTextCell:如何增加EditTextCell中可編輯的TextBox寬度?
- 2. 防止在編輯和非編輯模式之間切換時GWT EditTextCell翻轉
- 3. GWT celltable如何在edittextcell中創建selectcell?
- 4. GWT編輯器和獲取/設置值
- 5. 如何獲取EditText在用戶編輯後的值?
- 6. 如何在用戶完成編輯行後獲取DataGrid行數據?
- 7. 如何在客戶端編輯gwt requestfactory的ValueProxy值?
- 8. 如何在編輯完成時關閉套筒編輯器
- 9. 當用戶完成編輯datagridview中的單元格時檢測
- 10. 如何知道用戶何時在Paint.NET中完成編輯文件?
- 11. 如何獲取用戶在Freebase中進行編輯的次數?
- 12. 當用戶完成編輯NSTableView中的單元格時,如何得到通知?
- 13. 在jQuery中獲取編輯的TD值
- 14. 如何在編輯時獲取ListView SelectedItem?
- 15. 如何使用GWT編輯器框架編輯多值字段?
- 16. 如何在vi/vim編輯器中獲取用戶名?
- 17. 如何在編輯時更改GWT編輯器
- 18. 編輯用戶時獲取下拉式名稱而不是值
- 19. 如何獲取編輯項目模板中存在的值?
- 20. 如何在Gridview中獲取可編輯字段的值
- 21. 如何在編輯空值的情況下從DB獲取值
- 22. GWT的EditTextCell和TextInputCell有什麼區別?
- 23. 在文本編輯器中輸入時獲取自動完成彈出窗口
- 24. flex:如何在創建完成時獲取輸入值
- 25. 需要在查看模式和編輯模式下具有不同值的GWT EditTextCell
- 26. 如何在編輯行時獲取jqgrid單元格值?
- 27. 如何在jquery中獲取事件的完成時間
- 28. 如何獲取由Swing Timer更新3次/秒的JFormattedTextField的用戶編輯值?
- 29. 當FCK編輯器放置在更新面板中時,如何從FCK編輯器獲取編輯值
- 30. GridView如何從編輯中的文本框中獲取值MDOE
您是否需要將更改的詳細信息發送到服務器進行任何處理?或者需要處理客戶端本身的變化。 – Bennet