我有一个 CellTable 正在显示,如下所示 -
单击删除按钮时,我想在屏幕中央打开一个弹出面板,其中应包含一个流面板和一个按钮。
现在对于删除按钮,我有以下功能-
deleteColumn.setFieldUpdater(new FieldUpdater<Contact, String>() {
public void update(int index, Contact object, String value) {
try {
int removeIndex = CONTACTS.indexOf(object);
CONTACTS.remove(removeIndex);
table.setRowCount(CONTACTS.size(), true);
table.setRowData(CONTACTS);
table.redraw();
} catch(Exception e) {
e.printStackTrace();
}});
我不明白如何更新我的功能。示例代码肯定会有所帮助。