Hi,
Is infinite scrolling possible with a rowtemplate? The documentation mentions that a detailtemplate can't be used, but what about a rowtemplate?
I have a perfectly working grid with a complex rowtemplate where I would like to add the infinite scrolling.
After adding infinite scrolling, I get the following error when I scroll down to the 'loading' point:
Uncaught TypeError: can't access property "getAttribute", u is undefined
The line throwing the error that's in our javascript is the appendTo method:
timeRegistrationGrid.appendTo('#time-registration-grid');
If
I remove the rowTemplate property in the declaration of the syncfusion
grid, then I do get a new request with a valid skip and take. Do I need
to add something for this to work with a rowtemplate except the
following:
pageSettings: {
pageSize: 12
},
enableInfiniteScrolling: true,
infiniteScrollSettings: { enableCache: true },
Thanks in advance!