<div id="dialogLogoutConfirm" class="Dialog" style="display: none"> <br /> <div style="height: 20%; text-align: center"> <asp:Label ID="lblLogoutConfirm" runat="server" CssClass="label-dialog" Text="Sign out of DMS?"></asp:Label> </div> <br /> <br /> <div style="text-align: center;"> <asp:Button ID="btnLogoutConfirmCancel" runat="server" Text="No" Width="100px" /> <asp:Button ID="btnLogoutConfirmOK" runat="server" Text="Yes" Width="100px" /> </div></div>$("#dialogLogoutConfirm").kendoWindow(windowOptions);$("#<%=imgLogout.ClientID %>").click(function () { var window = $("#dialogLogoutConfirm").css("display", "block").data("kendoWindow"); var title = window.wrapper.find('.k-window-title'); title.html('<label style="font-size: large; color: #0; text-align:center;"><b>Sign Out</b></label>'); $("#<%= btnLogoutConfirmCancel.ClientID%>").bind("click", function () { window.close(); return false; }); window.center(); window.open(); return false;});Protected Sub btnLogoutConfirm_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnLogoutConfirmOK.Click Dim us As UserSession = UserSession.Retrieve(Session("intUserSessionId")) With us .SessionLogoutDate = DateTime.Now .Update() End With Session("intAgentID") = Nothing Session("intUserID") = Nothing Session("UserSecurityTask") = Nothing Session("GlobalSearchCriteria") = Nothing Response.Redirect("~/Login.aspx")End Sub

The following combined scripts are made available in order to simplify development and deployment.
Important: Only one of the above scripts can be included at a time.
This mean, I can't use DataViz with a Mobile app?
I'm using
<script src="js/kendo.mobile.min.js"></script>
But with i add
<script src="js/kendo.dataviz.min.js"></script>
to my page, the page can't load ok.
plase advise
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="Scripts/jquery.min.js" type="text/javascript"></script>
<script src="Scripts/kendo.web.min.js" type="text/javascript"></script>
<link href="styles/kendo.common.min.css" rel="stylesheet" type="text/css" />
<link href="styles/kendo.default.min.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="example" class="k-content">
<div id="grid"> </div>
<script>
$(document).ready(function () {
$("#grid").kendoGrid({
dataSource: {
type: "odata",
serverPaging: false,
serverSorting: false,
pageSize: 1000,
transport: {
read: "http://demos.kendoui.com/service/Northwind.svc/Orders"
},
group: {
field: "ShipCity", aggregates: [
{ field: "OrderID", aggregate: "count" },
{ field: "CustomerID", aggregate: "count" },
{ field: "ShipName", aggregate: "count" },
{ field: "ShipCity", aggregate: "count" }
]
},
aggregate: [{ field: "OrderID", aggregate: "count" },
{ field: "CustomerID", aggregate: "count" },
{ field: "ShipName", aggregate: "count" },
]
},
height: 280,
scrollable: {
virtual: false
},
sortable: true,
groupable: true,
columns: [
{ field: "OrderID", aggregates: "count", groupHeaderTemplate: "OrderID: #= value # (Count: #= count#)" },
{ field: "CustomerID", aggregates: "count", groupHeaderTemplate: "CustomerID: #= value # (Count: #= count#)", footerTemplate: "Total Count: #=count#" },
{ field: "ShipName", title: "Ship Name", aggregates: "count", groupHeaderTemplate: "ShipName: #= value # (Count: #= count#)" },
{ field: "ShipCity", title: "Ship City", aggregates: "count", groupHeaderTemplate: "ShipCity: #= value # (Count: #= count#)" }
],
databound: function () {
$("#grid").find(".k-icon.k-collapse").trigger("click");
}
});
});
</script>
</div>
</body>
</html>