genericuser
genericuser

Reputation: 1450

Infragistics jquery grid with asp.net mvc 3.0 .net 4.0

New to all three. I am trying to create sample grid. Basically I am following this: http://samples.infragistics.com/jquery/grid/filtering/

Here is my code: (cshtml)

@using MyInfragistics.Models                
@using Infragistics.Web.Mvc

<div>
    @Html.Infragistics().Grid("grid1", Model.MyGridModel)
</div>

THe files are included are in _layout.cshtml:

<title>@ViewBag.Title</title>
    <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
    <link type="text/css" href='@Url.Content("~/Content/Styles/themes/min/ig/jquery.ui.custom.min.css")'  rel="stylesheet" />
    <link type="text/css" href='@Url.Content("~/Content/Styles/themes/base/ig.ui.min.css")'  rel="stylesheet" />

    <script type="text/javascript" src="@Url.Content("~/Scripts/jquery-1.4.2.min.js")"></script>
    <script  type="text/javascript" src='@Url.Content("~/Scripts/Samples/combined/min/ig.ui.min.js")'/>

When I run the code, I get the error in the ig.ui.min.js file:

Microsoft JScript runtime error: Object doesn't support this property or method

Upvotes: 1

Views: 1990

Answers (1)

NT88
NT88

Reputation: 947

Well I would advice to take a look at Blog Section of the site. There are many blogs at the end of which there are runnable sample attached based on the blog theme. Try to modify any of the samples in the blogs which is more closer to your scenario.

Upvotes: 2

Related Questions