我有一个需要不同类型子行的 CellTable;类似于http://showcase2.jlabanca-testing.appspot.com/#!CwCustomDataGrid
我不想使用 DataGrid,因为我理解它具有固定高度,并且我的表格在动态高度下看起来更好。
我试图扩展 CellTable 然后写
public void renderRowValues(SafeHtmlBuilder sb,
java.util.List<ShipmentLeg> values,
int start,
SelectionModel<? super ShipmentLeg> selectionModel){
super.renderRowValues(sb, values, start, selectionModel);
GWT.log("HELLO");
}
实现这一目标的好策略是什么?注意:在此代码中,GWT.log 永远不会被调用,因为在 super 中会抛出弃用错误
干杯