Setting sizey programmatically of one grid item effects the order of other grid items randomly. This happens only if the items are already displayed.
For reproducing: Use demo source from angular2-grid. And add the following methods with some event of your choice:
expandWidget(myWidget: any) {
myWidget.gridItemConfig.sizey = 10;
}
collapseWidget(myWidget: any) {
myWidget.gridItemConfig.sizey = 1;
}
Setting sizey programmatically of one grid item effects the order of other grid items randomly. This happens only if the items are already displayed.
For reproducing: Use demo source from angular2-grid. And add the following methods with some event of your choice: