I can't get it running. What i'am missing.
Create from VS2013 Template MVC Project.
Including the Infragistics folder (css and js)
Adding in the _Layout in the head section ...
<head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>@ViewBag.Title - xx-xx</title> @Styles.Render("~/Content/css") @Scripts.Render("~/bundles/modernizr") <script src="~/Scripts/jquery-1.10.2.min.js"></script> <script src="~/Scripts/jquery-ui-1.10.4.min.js"></script> <!-- This script reference is require by the Infragistics Loader rendered below --> <script src="@Url.Content("~/Infragistics/js/infragistics.loader.js")"></script></head>
and in the <body> ...
@(Html.Infragistics().Loader() .ScriptPath(Url.Content("~/Infragistics/js/")) .CssPath(Url.Content("~/Infragistics/css/")) .Render() )
After that in the (new Index - View) ...
@using Infragistics.Web.Mvc@model TheShopWeb.Areas.Analysis.Models.ClosedOrdersModel@{ ViewBag.Title = "Index"; Layout = "~/Views/Shared/_Layout.cshtml";}<head> <title></title></head>><body> <h2>Index</h2> @(Html.Infragistics().Grid(Model.ListOfOrdersClosed.AsQueryable()) .Width("400px") .DataBind() .Render() ) </body>
Thanks. I had same problem. This fixed it.
Yes, you're right, it seems i fall in every newbies-hole - grrrrrrr ...
Hi,
You may encounter this issue if you don't clear IE11 cache. Please use the Internet Options window to delete all cache files and try running the sample again.
It didn't run. It throws:
JavaScript critical error at line 1, column 1 in http://cdn-na.infragistics.com/jquery/20132/latest/js/infragistics.core.js\n\nSCRIPT1014: Invalid Character
I will be happy to assist you.
Attached you will find a sample that demonstrates how you enable Remote Sorting for the igGrid. Please run the sample, compare it with your project, and let me know if you have any questions.
I am looking forward to hearing from you.