0
A
回答
2
首先,該創建單元表之後創建這樣
public class MyObject{
private CheckBox checkBox;
private HTML html;
public Contact(CheckBox checkBox, HTML html) {
this.checkBox = checkBox;
this.html = html;
}
// getter & setter
}
類
CellTable<MyObject> cellTable = new CellTable<MyObject>();
然後創建列
TextColumn<MyObject> firstColumn = new TextColumn<MyObject>() {
@Override
public CheckBox getValue(MyObject object) {
return object.getCheckBox;
}
};
cellTable.addColumn(firstColumn , "Checkbox");
和第二列
TextColumn<MyObject> secondColumn = new TextColumn<MyObject>() {
@Override
public HTML getValue(MyObject object) {
return object.getHtml;
}
};
cellTable.addColumn(secondColumn , "HTML");
相關問題
- 1. GWT - celltable
- 2. GWT - celltable
- 3. GWT CellTable排序
- 4. GWT CellTable驗證
- 5. GWT Celltable reset
- 6. GWT CellTable與UIBinder
- 7. gwt celltable尋呼
- 8. GWT Celltable和TABbing
- 9. GWT RequestFactory + CellTable
- 10. GWT CellTable wordwrap
- 11. Celltable GWT排序
- 12. GWT Celltable fixed columns
- 13. GWT CellTable人口
- 14. GWT CellTable樣式
- 15. GWT CellTable與ImageResourceCell
- 16. GWT 2.4 CellTable問題
- 17. GWT CellTable或類似
- 18. GWT CellTable OnClick問題
- 19. GWT CellTable Cells readOnly/disabled/non-editable
- 20. GWT - 如何分類celltable列?
- 21. GWT樣式CellTable標頭
- 22. 將GWT ImageCell插入CellTable
- 23. GWT - 使CellTable Cell使用HTML?
- 24. GWT CellTable和編輯框架
- 25. GWT Celltable調整大小
- 26. GWT CellTable輸入驗證
- 27. GWT:如何獲得cellTable
- 28. GWT Celltable只顯示15行
- 29. GWT 2.5.1 CellTable和SimplePager問題
- 30. CellTable中的GWT填充行