GwtMaterialDesign / gwt-material-table

A complex table component designed for the material design specifications
https://gwtmaterialdesign.github.io/gmd-table-demo/
Apache License 2.0
27 stars 31 forks source link

MaterialDataTable(scaffolding) is using default #202

Closed duststar76 closed 4 years ago

duststar76 commented 4 years ago

` public AbstractDataTable() { this(new StandardDataView<>()); }

public AbstractDataTable(DataView<T> view) {
    this(view, new DefaultTableScaffolding());
}

public AbstractDataTable(TableScaffolding scaffolding) {
    this();
    this.scaffolding = scaffolding;
}`

Within the AbstractDataTable the constructor change is leading to use the DefaultTableScaffolding.

kevzlou7979 commented 4 years ago

Updated https://github.com/GwtMaterialDesign/gwt-material-table/pull/200