GXT3 - 网格:添加带有按钮的列以修改可编辑网格中的行
In the example the line is editable automatically when line is selected. http://www.sencha.com/examples/#Exam...oweditablegrid
当我单击将出现在弹出窗口中的编辑按钮时,我希望更改该行。
TextButtonCell button = new TextButtonCell();
button.addSelectHandler(new SelectHandler() {
@Override
public void onSelect(SelectEvent event) {
Context c = event.getContext();
Info.display("Event", "Call the popup here.");
}
});
nameColumn.setCell(button);
有办法得到这个吗?
在此先感谢您的帮助。