resize
Fires when the scroller dimensions change (e.g. orientation change or resize)
<div data-role="view">
foo
<div data-role="scroller" style="width: 200px; height: 200px" data-pull-to-refresh="true" data-pull-offset="20" data-resize="foo">
<div style="height: 500px">
Content
</div>
</div>
bar
</div>
<script>
function foo() {
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log("foo!");
}
new kendo.mobile.Application();
</script>