Hi.
I created a dynamic loading datatable and enabled keyboard navigation.
When I used the down key to navigate from the last row to next page, an error “Cannot read property ‘id’ of undefined” occurred.
Please help. Thank you!
Mueller
Hi.
I created a dynamic loading datatable and enabled keyboard navigation.
When I used the down key to navigate from the last row to next page, an error “Cannot read property ‘id’ of undefined” occurred.
Please help. Thank you!
Mueller
I can confirm the issue.
Fix will be included in the next build
As a quick solution, you can add the loadahead
option in the component’s config, it must resolve the issue.
datafetch:30,
loadahead:45,
pager:{
container:"paging_here",
size:30,
group:5
},
It does solve the issue.
Thanks a lot!