or
Virtualization seems to be implemented on the controls not the datasource so I assume theres no way to use it with just the dataprovider? or maybe tell the data provider to page, but append vs load new data?
this is the plugin we are tring to add http://isotope.metafizzy.co/[{"id":"3","views":"0","title":"Video1","description":"Video1.mp4","created_at":"2012-03-21 00:00:00","updated_at":"2012-03-21 00:00:00","link":"\/videos\/Video1.mp4","add_by":"1","category":"1","convert":"0","group_fkid":"1"},{"id":"2","views":"0","title":"Video2","description":"Video2.mp4","created_at":"2012-03-21 00:00:00","updated_at":"2012-03-21 00:00:00","link":"\/videos\/Video2.mp4","add_by":"1","category":"1","convert":"0","group_fkid":"1"},{"id":"1","views":"0","title":"Video3","description":"Video3.mp4","created_at":"2012-03-21 10:00:00","updated_at":"2012-03-21 10:00:00","link":"\/upload\/videos\/Video3.mp4","add_by":"1","category":"1","convert":"0","group_fkid":"1"},{"id":"4","views":"0","title":"Video de test","description":"31.mp4","created_at":"2012-03-21 00:00:00","updated_at":"2012-03-21 00:00:00","link":"\/upload\/videos\/31.mp4","add_by":"1","category":"1","convert":"0","group_fkid":"1"}]<div id="myID"> <div data-role="tabstrip"> <ul> <li>tab1</li> <li>tab2</li> </ul> <div> Content tab 2 <select data-role="dropdownlist" data-source='{"transport":{"read":"some-url"}}' /> </div> <div> Content tab 2 </div> </div></div>var app = new kendo.mobile.Application(document.body, { transition: "slide", hideAddressBar: true });app.bind("viewShow", function(e) { console.log(e); });ORvar app = new kendo.mobile.Application(document.body, { transition: "slide", hideAddressBar: true, viewShow: function (e) { console.log(e); } });