Using: MVC3, Razor, C#, Infragistics 11.2, IE8, jquery 1.7.1, jquery-ui 1.8.17.
I have a grid that is no longer taking mouse clicks to change the number of records displayed. The list does drop down, but if I click on a different value, nothing changes.
If, however, I expand the drop down, and then use the arrow keys to navigate to a different value, I can hit enter to submit and the number of records displayed per page changes.
I recently upgraded my jquery and jqueryui versions. Is this a known issue? Everything else seems to be working fine.
Thanks,Tony
Hi Anthony!!! I have the same problema in this right moment... What was your solution?
OK.
It appears that there is an issue with the web browser control I was using. Though, I can't tell you exactly what it is at this point. Likely it's some caching of older versions of files.
Sorry for the trouble.
Infragistics 11.2 with SR,
DLL Attributes:
Here is an example of code:
@( Html.Infragistics().Grid<Models.item>().ID("igGrid1").FixedHeaders(true).Columns(column =>{column.For(x => x.fld1).HeaderText("fld1").Width("90");column.For(x => x.fld2).HeaderText("fld2").Format("MM/dd/yyyy").Width("100");column.For(x => x.fld3).HeaderText("fld3").Format("currency").Width("155");column.For(x => x.fld4).HeaderText("fld4").Width("155");column.For(x => x.fld5).HeaderText("fld5").Format("MM/dd/yyyy").Width("100");column.For(x => x.fld6).HeaderText("fld6").Format("currency").Width("155");column.For(x => x.fld7).HeaderText("fld7").Width("100");column.For(x => x.fld8).HeaderText("fld8").Width("60");column.For(x => x.fld9).HeaderText("fld9").Width("10");column.For(x => x.fld10).HeaderText("fld10").Width("10");column.For(x => x.fld11).HeaderText("fld11").Width("400");}).Features(features =>{features.Sorting().Mode(SortingMode.Single).ApplyColumnCss(false);features.Selection().MouseDragSelect(false).MultipleSelection(false).Mode(SelectionMode.Row);features.Selection().Activation(true);features.Sorting();features.Paging().PageSize(25);features.Filtering().Mode(FilterMode.Advanced);features.Hiding().ColumnSettings(settings =>{settings.ColumnSetting().ColumnKey("fld1").Hidden(false).AllowHiding(false);settings.ColumnSetting().ColumnKey("fld2").Hidden(false).AllowHiding(false);settings.ColumnSetting().ColumnKey("fld3").Hidden(false).AllowHiding(false);settings.ColumnSetting().ColumnKey("fld4").Hidden(false).AllowHiding(false);settings.ColumnSetting().ColumnKey("fld5").Hidden(false).AllowHiding(false);settings.ColumnSetting().ColumnKey("fld6").Hidden(false).AllowHiding(false);settings.ColumnSetting().ColumnKey("fld7").Hidden(false).AllowHiding(false);settings.ColumnSetting().ColumnKey("fld8").Hidden(false).AllowHiding(false);settings.ColumnSetting().ColumnKey("fld9").Hidden(true).AllowHiding(true);settings.ColumnSetting().ColumnKey("fld10").Hidden(true).AllowHiding(true);settings.ColumnSetting().ColumnKey("fld11").Hidden(false).AllowHiding(false);});}).ClientDataSourceType(ClientDataSourceType.JSON).DataSourceUrl(Url.Action("someFunction", new RouteValueDictionary(new { id = Model.id}))).Width("100%").Height("400").DataBind().Render())
I'm also looking into another issue with the drop down date picker. However, it appears to be related to the webbrowser control that we are using. It's possible that this is also related. Once I figure out what's going on, I'll test the grid as well.
Hello Anthony,
In order to look in to this provide me with the version of NetAdvantage product you are using with service release number if any and details on razor syntax used for combo so I may look in to.