Hi, I am having endless issues trying to get a VB.Net VS2013 MVC 5 project (.Net framework 4.5) up and running using Ignite UI controls from Infragistics V 2014.2. I have spent endless hours browsing your support forums and FAQ to try find a simple project which details a straightforward list of the steps needed to add for example the igGrid to a view (in my case a partial view). I am using razor syntax.
I have added a reference to the relevant Infragistics.Web DLLs to the project (CopyLocal=True).
I have modified the web.config file to add the "<add assembly..." entry.
I have added references to the various Infragistics script and style files in my BundleConfig file.
Nothing seems to work.
Do you have a simple example project which I can use as a template?
The IQueryable was the key and resolved all the issues.
Thanks for all your help Denis, much appreciated!
Hello David,
Looking forward for hearing from you.
Thanks Denis,
I have added a readonly property to the Model to expose the grid datasource as IQueryable and the test project is working. I will apply same to main project and report back.
Thank you for the provided sample.
You are setting a model of type TestModel which is not supported by the grid, the igGrid only accepts IQueryable(Of T).
Please refer to the attachment from previous reply for how to provide IQueryable to the grid.
Hi Denis
New version attached (this one with bin folder contents deleted)
Thanks
David