Troubleshooting
This article provides solutions for issues you might encounter while working with the Hybrid ScrollView by Kendo UI.
A data-bound ScrollView does not display any data
Below are listed some of the possible reasons and solutions for that:
-
Cause The
pageSize
of the DataSource is undefined.Solution Set the
pageSize
. Setting thepageSize
is mandatory. -
Cause The
total
amount of records in the DataSource is undefined.Solution Set the
total
. Setting thetotal
is mandatory. -
Cause The widget's
template
is undefined.Solution Set the
template
. Setting thetemplate
is mandatory. -
Cause The widget's content height is zero.
Solution If the
contentHeight
is set to 100%, the ScrollView element should be the immediate child of the View and the View'sstretch
option should be set totrue
. For a code sample, refer to this demo.
The ScrollView loads data but the application hangs or crashes
The possible reason is that the total amount of records that you are loading is large.
Solution Set the enablePager
to false
.