Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
573
igniteUI MVC igGrid Error
posted

I have an ASP.NET MVC Project and I'm trying to add Data Grid from this sample

https://www.igniteui.com/grid/aspnet-mvc-helper

but I have 2 problems

First one


using IgniteUI.SamplesBrowser.Models.Repositories;
using IgniteUI.SamplesBrowser.Application.Data;

I have a red underline on these words ( Repositories - Application ) so I have errors in the Controller

Second one

In the view

<body>

@(Html.Infragistics()
.Grid(Model)
.ID("grid")
.Width("100%")
.Height("500px")
.PrimaryKey("ID")
.AutoGenerateColumns(false)
.AutoGenerateLayouts(false)
.Columns(column =>
.........

....

</body>

I installed Infragistics.Web.Mvc form NuGet Package Manager but I have a red underline on this word ( Infragistics )

Can you solve this problems or give me any working sample?

Thanks