or
<div id="scrollview-container"> <div data-role="scrollview" id="feed-scrollview"> <div data-role="page" class="feed-item"> <h2>header 1</h2> <p data-role="scroller">text to be scrolled</p> </div> <div data-role="page" class="feed-item"> <h2>header 2</h2>
<p data-role="scroller">other text</p>
</div>
more pages... </div></div>function treeview_databound(e) { var treeview = e.sender; var item = treeview.dataSource.get (id_root_node); // How do I determine root node? if (item) { var node = treeview.findByUid (item.uid); treeview.select (node); }}$("#splitted_tree_window_left").kendoTreeView({ // ... dataBound : treeview_databound,});$(document).ready(function ($) { kendo.bind($("#view"), viewModel); });loadExtPage: function (path) { //Use jQuery Ajax to fetch the template file var tmplLoader = $.get(path) .success(function (result) { //On success, Add page to DOM var index = new kendo.View($('<div />').html(result)); layout.showIn("#content", index); })}Contains properties to be displayed in the grid
public class ApplicationListVM