I have a feeling this has already been asked and answered before, but I could not find any reference information.
I am trying to use a Kendo Web Grid in my Kendo Mobile application. Everything seems to work OK (no errors that I can find), but the grid does not display properly...it is almost as if the grid is in-place but nothing is displayed.
I am trying to combine the stylesheets as listed below:
<link href="@Url.Content("~/Content/kendo/2013.2.716/kendo.default.min.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/kendo/2013.2.716/kendo.common.min.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/kendo/2013.2.716/kendo.mobile.all.min.css")" rel="stylesheet" type="text/css" />
and the supporting JS files as listed below:
<script src="@Url.Content("~/Scripts/kendo/2013.2.716/jquery.min.js")"></script>
<script src="@Url.Content("~/Scripts/kendo/2013.2.716/kendo.all.min.js")"></script>
<script src="@Url.Content("~/Scripts/kendo/2013.2.716/kendo.aspnetmvc.min.js")"></script>
Is there a preferred order? I have tried alternate orders with no luck. Is there anything else I can try?
*** EDIT ***
My mistake had nothing to do with CSS files...I had not initialized the mobile application on the page I was trying to use the grid on. My apologies.
I am trying to use a Kendo Web Grid in my Kendo Mobile application. Everything seems to work OK (no errors that I can find), but the grid does not display properly...it is almost as if the grid is in-place but nothing is displayed.
I am trying to combine the stylesheets as listed below:
<link href="@Url.Content("~/Content/kendo/2013.2.716/kendo.default.min.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/kendo/2013.2.716/kendo.common.min.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/kendo/2013.2.716/kendo.mobile.all.min.css")" rel="stylesheet" type="text/css" />
and the supporting JS files as listed below:
<script src="@Url.Content("~/Scripts/kendo/2013.2.716/jquery.min.js")"></script>
<script src="@Url.Content("~/Scripts/kendo/2013.2.716/kendo.all.min.js")"></script>
<script src="@Url.Content("~/Scripts/kendo/2013.2.716/kendo.aspnetmvc.min.js")"></script>
Is there a preferred order? I have tried alternate orders with no luck. Is there anything else I can try?
*** EDIT ***
My mistake had nothing to do with CSS files...I had not initialized the mobile application on the page I was trying to use the grid on. My apologies.