how to add column of ClickableTextCells to cellTable
问题 hi all i need a simple example show me how to add column of ClickableTextCells to cellTable thanks. 回答1: Column<YerValueObject, String> newCol = new Column<YerValueObject, String>(new ClickableTextCell()) { @Override public String getValue(YearValueObject obj) { return obj.someMethod(); } }; newCol.setFieldUpdater(new FieldUpdater<YerValueObject, String>() { @Override public void update(int index, YerValueObject obj, String value) { //do whatever you need to here... } }); table.addColumn