Hi Isomorphic,
please see this sample (v11.1p_2018-11-15) and this code:
If you load the sample like this or with autoFitWidth: true, you'll notice that the size of the column changes after load of data and makes a "bumpy" GUI appearance.
I think this is since the fix of this one, but I'm not sure.
Now I found out by chance how to fix this.
If you comment in autoFitDateFields: "both" with or without autoFitWidth: true, you'll see that the ListGrid columns width are fixed again.
I don't know if there was a change in this area or if you regard this as a bug.
Best regards
Blama
please see this sample (v11.1p_2018-11-15) and this code:
Code:
lg = isc.ListGrid.create({ width: "100%", height: 200, showFilterEditor: true, autoFitMaxHeight: 500, autoFetchData: true, autoFitData: "vertical", // autoFitWidthApproach: "both", // autoFitDateFields: "both", // Comment in this line to get a stable display with no resize after data load // autoFitWidth: true, dataSource: "supplyItemWithOps", initialCriteria: { category: "Glue Sticks" } });
I think this is since the fix of this one, but I'm not sure.
Now I found out by chance how to fix this.
If you comment in autoFitDateFields: "both" with or without autoFitWidth: true, you'll see that the ListGrid columns width are fixed again.
I don't know if there was a change in this area or if you regard this as a bug.
Best regards
Blama
Comment