or
<div id="SearchResults"> @Html.Kendo().Grid(Model).Name("grdSearchResults").Columns(column=> { column.Bound(c => c.FormID).Title("Form Number"); column.Bound(c => c.Country).Title("Country"); column.Bound(c => c.State).Title("State"); column.Template(c => @Html.ActionLink(c.Description, "FileBoundGetForm", new { id = c.FormID }, new { @target = "_blank" })).Title("Description"); column.Bound(c => c.ModifiedUser).Title("Modified User"); column.Bound(c => c.CreatedDate).Title("Created Date"); }).DataSource(ds => ds.Ajax() .Read(reader => reader.Action("DSReleaseForms", "ReleaseForm", new { ByCountry = ViewBag.stateFilter, ByState = ViewBag.countryFilter }).Data("additionalData"))).Pageable()</div><div id="results"> @Html.Kendo().Grid(Model).Name("grdClientResults").Columns(column => { column.Template(@<text> @Html.ActionLink(@item.ClientID.ToString(), "ClientAdmin", new { id = @item.ClientID })</text>).Title("Edit");//.ClientTemplate("<a href='/ClientAdmin/ClientAdmin/GetClient/#=ClientID#'>#=ClientID#</a>"); column.Bound(c => c.ClientID).Title("Client Id"); column.Bound(c => c.Name).Title("Client Name"); column.Bound(c => c.Address1).Title("Address"); column.Bound(c => c.Address2).Title("Address2"); column.Bound(c => c.City).Title("City"); column.Bound(c => c.StateProvince).Title("State"); }).DataSource(ds => ds.Ajax() .Read(reader => reader.Action("ClientDetail", "ClientAdmin"))).Pageable() </div>
return Request.CreateErrorResponse(HttpStatusCode.NotFound, "Ticket not found: " + ticketId);HTTP/1.1 404 Not FoundCache-Control: no-cachePragma: no-cacheContent-Type: application/json; charset=utf-8Expires: -1Server: Microsoft-IIS/8.0X-AspNet-Version: 4.0.30319X-SourceFiles: =?UTF-8?B?QzpcRG90TmV0XFdlYlBvc1xXZWJQb3NcYXBpXHRpY2tldHNcMlxsaW5lcw==?=X-Powered-By: ASP.NETDate: Mon, 08 Sep 2014 00:25:57 GMTContent-Length: 60{"message":"Ticket not found: 2"}error: function(e) { if (e.errors) { alert(e.errors); this.cancelChanges(); }},<script type="script/x-kendo-template" id="meeting-item"> <a data-item-id="#=meetingID#" href="\#meeting-details?id=#=meetingID#" data-transition="slide:left"> <h3 class="time">#= startTime #</h3> <h3 class="counts"><span class="hc" data-i18n="dashboard.headCount"></span>: #=headCount# | Total: #=totalCount#</h3> <h2>#=meetingName#</h2> </a> </script><meta name="viewport" content="minimal-ui" /><!DOCTYPE html><html><head> <meta name="viewport" content="minimal-ui" /> <style>html { font-size: 12px; font-family: Arial, Helvetica, sans-serif; }</style> <title></title> <link href="http://cdn.kendostatic.com/2014.1.318/styles/kendo.common.min.css" rel="stylesheet" /> <link href="http://cdn.kendostatic.com/2014.1.318/styles/kendo.default.min.css" rel="stylesheet" /> <link href="http://cdn.kendostatic.com/2014.1.318/styles/kendo.mobile.all.min.css" rel="stylesheet" /> <script src="http://cdn.kendostatic.com/2014.1.318/js/jquery.min.js"></script> <script src="http://cdn.kendostatic.com/2014.1.318/js/kendo.all.min.js"></script></head><body> <div data-role="view" data-layout="layout" data-show="layoutShow" id="layoutView"> <p> This examples shows the platform specific layouts. Change the OS to see how the header and footer changes. </p> <p> With Kendo Mobile version 2014.1.318, I'm using the following meta tag to get rid of Mobile Safari's toolbars in iOS7.1 (iPhone 4): </p> <p> <code><meta name="viewport" content="minimal-ui" /></code> </p> <p> Changing orientation from portrait to landscape with this meta tag in place leaves the bottom part of the screen unused or, in other words, messes up the view's scroll position so that the top part of the screen gets hidden and "blank" content is shown at the bottom of the page. </p></div><div data-role="layout" data-id="layout" data-platform="ios"> <header data-role="header"> <div data-role="navbar"> <a data-align="right" data-role="button" class="nav-button" href="#/">Index</a> <span data-role="view-title">iOS Platform</span> </div> </header> <footer data-role="footer"> <div data-role="tabstrip"> <a data-icon="contacts">Profile </a><a data-icon="settings">Settings</a> </div> </footer></div><div data-role="layout" data-id="layout" data-platform="android"> <header data-role="header"> <div data-role="navbar"> <span data-role="view-title">Android Platform</span> <a data-align="right" data-role="button" class="nav-button" href="#/">Index</a> </div> </header> <footer data-role="footer"> <div data-role="tabstrip"> <a data-icon="history">Sales</a> <a data-icon="settings">Settings</a> </div> </footer></div><div data-role="layout" data-id="layout" data-platform="blackberry"> <header data-role="header"> <div data-role="navbar"> <a data-align="right" data-role="button" class="nav-button" href="#/">Index</a> <span data-role="view-title">BlackBerry platform</span> </div> </header> <footer data-role="footer"> <div data-role="tabstrip"> <a data-icon="favorites">Rating</a> <a data-icon="settings">Settings</a> </div> </footer></div><div data-role="layout" data-id="layout" data-platform="wp"> <header data-role="header"> <div data-role="navbar"> <a data-align="right" data-role="button" class="nav-button" href="#/">Index</a> <span data-role="view-title">Windows Phone platform</span> </div> </header> <footer data-role="footer"> <div data-role="tabstrip"> <a data-icon="home">Home</a> <a data-icon="globe">Global</a> </div> </footer></div><style scoped> #layoutView .km-view-title { visibility: inherit; } .km-android #layoutView .km-view-title { display: block; position: static; }</style><script> var app = new kendo.mobile.Application(document.body);</script></body></html>