or
@(Html.Kendo().MobileListView<IDigitales.RadBook.Web.Models.StudyViewModel>() .Name("listview") .TemplateId("tmp") .HeaderTemplateId("htmp") .FixedHeaders(true) .Style("inset") .DataSource(datasource => datasource .Read(read => read.Action("Studies","Home").Data("searchparameter")) .PageSize(10) .Group(g=>g.Add(m=>m.PatientName)) ) )<script type="text/x-kendo-template" id="tmp"> <div data-role="content" style="width:100%;"> <table style="width:100%; border-width:2px;"> <tr style="border-width:thin;"> <td style="width:33%"> #: PatientName # </td> <td style="width:33%"> #: Modality # </td> <td style="width:33%"> #: StudyDate # </td> <td> <div style="background-color:WhiteBlue;"> Status Report </div </td> <td style="right:0px; width:33%"> <div style="position:relative; right:0px;"> <a data-role="button" class="view" data-click="onClick" id="#=StudyId#">View</a> </div> </td> </tr> <tr> <td> #: Description # </td> </tr> <table> <div></script> <script type="text/x-kendo-template" id="htmp"> #: PatientName #</script>

$('.k-button').css('padding-right', '2px');
OnSelect: function (e){ var selectedFiles = $(".k-upload-files li #fileName"); e.files = $.grep(e.files, function (value) { for (var i = 0; i < selectedFiles.length; i++) { if (selectedFiles[i].innerHTML == value.name) return false; } return true; });}var grid = $("#grid").kendoGrid({ dataSource: { data: [ {foo: 10, bar: "A", total: 0}, {foo: 20, bar: "B", total: 0}, {foo: 5, bar: "B", total: 0}, {foo: 35, bar: "A", total: 0} ], schema: { model: { fields: { foo: { type: "number" }, bar: { type: "string" }, total: { type: "number" } } } }, aggregate: [ {field: "foo", aggregate: "sum"}, {field: "foo", aggregate: "average"} ], change: function(e) { var item = e.items[0]; if (this.group().length && e.action !== "itemchange") { item = getFirstItem(item); } console.log("Total Foo: "); console.log("Total Foo of bar A: "); console.log("Total Foo of bar B: "); console.log("Total Foo of bar C: "); } }, //groupable: true, editable: true, toolbar: ["create", "save", "cancel"], columns: [ { field: "foo", footerTemplate: "Sum1: #= sum # || Average: #= average #" }, { field: "bar" }, { field: "total" } ] }).data("kendoGrid");