Closed duststar76 closed 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.
Updated https://github.com/GwtMaterialDesign/gwt-material-table/pull/200
` public AbstractDataTable() { this(new StandardDataView<>()); }
Within the AbstractDataTable the constructor change is leading to use the DefaultTableScaffolding.