Demo:
https://codepen.io/16adianay/pen/jEOzaPR
Steps to reproduce:
- Open the demo above.
- Reload the page.
Expected results:
The DataGrid is displayed.
Current results:
The Cannot read properties of undefined (reading 'done')
error occurs in the browser console.
Additional information:
This error began appearing after this fix: DataGrid changes padding on row selection for fixed columns.
Hi,
The data-grid appears to encounter a loading issue when a column fixing is enabled or when a column is configured with 'fixed=true'.
<dxo-column-fixing **[enabled]="true"**></dxo-column-fixing> <dxi-column **[fixed]="true"** fixedPosition="left" [allowResizing]="true" [allowSearch]='false' [allowFiltering]="false" alignment="left" [width]='150'></dxi-column>
Hello,
The data-grid appears to encounter a loading issue also when we have enable the StateStoring.
There is a workaround to set a fixed version 24.2.5 in package.json file and wait for DevExtreme to fix this issue
Is there any workaround different to return to the previous version?.
Hi Carlos,
You can temporarily disable the state storing mechanism to resolve the issue:
stateStoring: { enabled: false, type: 'localStorage', storageKey: 'testStoreDX', },
Thanks,
Alisher