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 ApplicationListVMhi i have a dataSource that spits out data like this:after feb - the 'budget' MDetail falls off to 0and before jun - i dont know what the 'projected' MDetail doesits drawing a bunch of stuffwhat im trying to achieve here is:if there are no records for anything after febthen dont draw anything - just cut it off ie dont descend to 0and likewise if there are no records for the beginningthen dont draw anything until theres a record for the category ie it iwll be blank until jun and then the 'projected' numbers start drawinghow do i do this?thanksa![{Amount: "2140402000"MDetail: "Budget"Month: "Jan"Monthnum: "1"Year: "2013"},{Amount: "2146823206"MDetail: "Budget"Month: "Feb"Monthnum: "2"Year: "2013"},{Amount: "2257798847"MDetail: "Projected"Month: "Jun"Monthnum: "6"Year: "2013"},{Amount: "2272474540"MDetail: "Projected"Month: "Jul"Monthnum: "7"Year: "2013"}]$J("#chart").kendoChart({ dataSource: { data:source, group: { field: "MDetail", dir: "asc" }, sort: [ {field: "Year", dir: "asc"}, {field: "Monthnum", dir: "asc"} ] }, theme: "blueOpal", title: { text: "Total Cost of Workforce for " + year }, legend: { position: "bottom" }, seriesDefaults: { type: "area", format: "${0:0,000}" }, series: [{ field: "Amount", groupNameTemplate: "#= group.value # " }], valueAxis: { labels: { template: "#= kendo.format('$ {0:N0}', value / 1000000) # M" }, majorUnit: 100000000, line: { visible: false }, axisCrossingValue: -10 }, categoryAxis: { field: "Month", majorGridLines: { visible: false } }, tooltip: { visible: true, format: "$ {0:0,000}" }});