Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(dataview): preserve any previous sort when resetting items (#62)
Resetting the dataview items will remove any sorts that were on the grid. You can duplicate this bug in example3 as such: ``` dataviewChanged(dataview) { this.dataview = dataview; const data = [ ...this.dataview.getItems() ] // you have 6 seconds to sort the grid and then watch it go back to the original setTimeout(() => this.dataset = data, 6000); } ```
- Loading branch information