This repository was archived by the owner on Mar 5, 2024. It is now read-only.

Description
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;
}