I have a fairly simple MVC 4 project. I'm trying to use the script bundling features where jquery and jquery-ui are rendered in a shared main razor view (_Layout.cshtml).
I tried many permutations of moving the script bundle rendering in the main view but no avail. The Infragistics components remain undefined or appear to use jquery before the page is ready.
I have been unable to jet igGrid to work in this scenario. If I include the jquery and jquery-ui files directly in the view containing igGrid, it works - but this is not how I want my final application to use (including these script files in each page).
Can someone please post a simple ***working*** example that includes jquery components in the _layout.cshtml file and an index.cshtml view that uses igGrid without redundantly including jquery in the index view?
Many thanks in advance.
In case someone else experiences this, the issue turned out to be caused by jquery 1.9.X and jqueryui 1.10.X - These are not currently supported by Infragistics 12.2.
We had to revert to prior versions for the Infragistics components to work.
Hi.
We support jQuery 1.9.x and jQueryUI latest with our latest 13.1 version of the IgniteUI packet that is going to be shipped next week. You know that there was a some big changes with jQuery 1.9.X, one of which is the removing of $.browser, so our controls needed to adapt to that change.
For 12.2 the versions that needs to be used are 1.7.X for jQuery and 1.8.X for jQuery UI.
Thanks, Nikolay Alipiev