Upgraded to Q3 2013, and I set the content for my scrollview through the content() method, but it's getting a:
Error: Object doesn't support property or method '_getPages'
I tried creating just a simple example from the Kendo UI docs, and I still get the error:
<div id="slideshow">
</div>
<script>
function showHome(e) {
var slideshow = $("#slideshow").kendoMobileScrollView().data("kendoMobileScrollView");
slideshow.content('<div data-role="page">Item1</div><div data-role="page">Item2</div>');
}
</script>
This is the exact same content that is set in the API docs for the content(...) method, so I'm leaning towards a bug?