gwt-material-table icon indicating copy to clipboard operation
gwt-material-table copied to clipboard

ColumnMenu List 2.0-SNAPSHOT shows hidden columns

Open HoochSDS opened this issue 8 years ago • 0 comments

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

dropdownhidden

Nice to have: If the dropdown list would stick with the table header

tabledpmenu

HoochSDS avatar Sep 28 '17 19:09 HoochSDS