Hello,
I was wondering if there is any trick to enable nested views within a Kendo UI Mobile application. The following code is not running as expected (all the sub-views are loaded at once). The documentation from Kendo UI is not very specific about this.
Regards,
Doru
I was wondering if there is any trick to enable nested views within a Kendo UI Mobile application. The following code is not running as expected (all the sub-views are loaded at once). The documentation from Kendo UI is not very specific about this.
<div data-role="view" id="dashView" data-layout="mobile-view"> <div data-role="view" id="dataA"> <a data-role="button" href="#dataB">A</a> </div> <div data-role="view" id="dataB"> <a data-role="button" href="#dataC">B</a> </div> <div data-role="view" id="dataC"> <a data-role="button" href="#dataA">C</a> </div></div>Doru