如何通过单击单元格表中的单元格来打开弹出面板?
我有一个 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();
}});
我不明白如何更新我的功能。示例代码肯定会有所帮助。
I have a CellTable being displayed like shown below-
On click of the Delete button I want to open a Popup panel in the center of the screen which should contain a Flow Panel and a Button within it.
Right now for the Delete button I have the following function-
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();
}});
I do not understand how to update my function for the same. A sample code will surely help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只显示一个
PopupPanel
怎么样?像这样的事情:
如果你想显示一个确认对话框,那么这段代码更容易:
How about just displaying a
PopupPanel
?Something like this:
If you want to display a confirm dialog than this code is easier:
像这样的东西吗?
请尝试一下并让我知道结果。我刚刚写了,还没有测试它:|
Something like this?
Please try it out and let me know the result. I just wrote and havent test it yet :|