I have a CellTable that needs a subrow of a different type; similar to http://showcase2.jlabanca-testing.appspot.com/#!CwCustomDataGrid
I do not want to use DataGrid as I understand it to have a fixed height, and my table looks better with a dynamic height.
I've tried to extend CellTable then write
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");
}
What is a good strategy to accomplish this? Note: in this code GWT.log is never called as in the super a deprecation error is thrown
Cheers