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
I've had to download the Infragistics packages and then reference them properly. I would say check for where the repo is stored and make sure your references are hitting it accurately.
I already installed these packages from NuGet Package Manager
Infragistics.Web.Mvc
IgniteUI
IgniteUI.MVC
Am I missing any packages or references ?