gwt-material-table
gwt-material-table copied to clipboard
ColumnMenu List 2.0-SNAPSHOT shows hidden columns
Hi, if you hide a tablecolumn like this
table.addColumn(new TextColumn<TestDTO>() {
@Override
public HideOn hideOn() {
return HideOn.fromStyleName("hide-on-med-and-up");
}
@Override
public String getValue(TestDTO testDTO) {
return String.valueOf(testDTO.getId());
}
}, "ID");
The Column is hidden in the table but not in the dropdown list. Thanks
Nice to have: If the dropdown list would stick with the table header
