Troubleshooting
Starting with the R2 2023 release, Kendo UI will no longer ship Hybrid UI components. This means that the R2 2023 will be the last release to include Kendo Hybrid in the Kendo UI package. See full announcement in Kendo jQuery blog post. The last stable version that we recommend to use for Kendo Hybrid components is R3 2022 SP1.
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
.