Dynamic Loading the data on Dataview+pager

I am facing an issue in the Dynamic Loading data on Dataview+pager.
Code: https://snippet.webix.com/r0bqf88z

I am getting a follwoing error on the page change event.
Error:

Uncaught TypeError: Cannot read properties of undefined (reading 'id')
    at u.Q (VM346 webix.js:52)
    at Array.map (VM346 webix.js:9)
    at u.render (VM346 webix.js:52)
    at u.<anonymous> (VM346 webix.js:113)
    at Te.<anonymous> (VM346 webix.js:9)
    at Te.callEvent (VM346 webix.js:9)
    at Te.refresh (VM346 webix.js:38)
    at u.refresh (VM346 webix.js:39)
    at u.select (VM346 webix.js:182)
    at u.webix_pager_item (VM346 webix.js:182)
Q @ VM5382 webix.js:52
map @ VM5382 webix.js:9
render @ VM5382 webix.js:52
(anonymous) @ VM5382 webix.js:113
(anonymous) @ VM5382 webix.js:9
callEvent @ VM5382 webix.js:9
refresh @ VM5382 webix.js:38
(anonymous) @ VM5382 webix.js:39
select @ VM5382 webix.js:182
webix_pager_item @ VM5382 webix.js:182
Ju @ VM5382 webix.js:50
Wu @ VM5382 webix.js:50
(anonymous) @ VM5382 webix.js:9

If I remove the type:({width:‘auto’,height:‘auto’}) from the dataview. Dyanmic Pagination is working.
But my requirement is the width should be 100% and the height should be auto.

Thank You.

Hi!
Note that dynamic: true and height:'auto' do not work together.
Dynamic loading and auto-height of items cannot be used together due to the fact that scroll height and row sizes are important for dynamic loading.
You can try to use datatable instead: Code Snippet
Also you can hide the datatable headers and add some templates. Please, check the following snippet Code Snippet