or
var template = kendo.template($("#Template_Pre").html() + viewModel.templates["someKey"].Item + $("#Template_Sub").html());$("#mylist").kendoMobileListView({ dataSource: viewModel.listDataSource, template: template, appendOnRefresh: false, pullToRefresh: true, scrollThreshold: 30});<input data-role="numerictextbox" data-bind="value: someIntValue" />model: { id: "myId", fields: { myId: { editable: false, type: "number" }, someStringValue: { editable: false, type: "string" }, someIntValue: { editable: true, type: "number", validation: { min: 0 } } } }<a id="GoIssue" data-role="button" href="Main/Issue?priorPage=Picklist&fieldName=reqOrWO&value={TBS}" data-icon="details" ></a><br>// Start disabled until someone puts something IN the reqOrWO field$('#GoIssue').addClass("disabled");// disabled is implemented by returning false on the click action if it has the disabled class// the disabled class also has visual aspects as well.$('#GoIssue').click(function () { event.preventDefault ? event.preventDefault() : event.returnValue = false; return (!$(this).hasClass('disabled')); });series: [{ type: "pie", field: "Amount", categoryField: "DisplayName", colorField: "color", padding: 20, overlay: "glass"}]series: [{ type: "pie", field: "Amount", categoryField: "DisplayName", colorField: "color", padding: 20, overlay: { gradient: "glass" }}]var pictures = [{ type: "JPG", len: 20, wid: 15, appr: 17.5, count: 2 },{ type: "JPG", len: 22, wid: 17, appr: 12.5, count: 3 },{ type: "JPG", len: 24, wid: 15, appr: 10.5, count: 1 },{ type: "JPG", len: 22, wid: 4, appr: 17.5, count: 6 },{ type: "PNG", len: 20, wid: 15, appr: 17.5, count: 4 },{ type: "PNG", len: 25, wid: 7, appr: 9.5, count: 4 },{ type: "PNG", len: 21, wid: 11, appr: 21.5, count: 1 }];var dataSource = new kendo.data.DataSource({data: pictures,group: {field: "type",aggregates: [{ field: "len", aggregate: "sum" },{ field: "wid", aggregate: "sum" }]}});dataSource.read();var seriesA = [],seriesB = [],categories = [],items = dataSource.view(),length = items.length,item;for (var i = 0; i < length; i++) {item = items[i];seriesA.push(item.aggregates.wid.sum);seriesB.push(item.aggregates.len.sum);}