I cant get the igCombo to show the dropdown button
it is there but grey
@{IEnumerable<Intranet.mvc.Models.Status> List = ViewBag.Status;}@(Html.Infragistics().ComboFor(m => m.Status).TextKey("Status1").TextKeyType(ComboDataType.String).ValueKey("ID").ValueKeyType(ComboDataType.Number).DropDownOnFocus(true).Mode(ComboMode.DropDown).ShowDropDownButton(true).ValidatorOptions(option => option.Required(true)).DataSource(List).DataBind().Render())
I found that I need to load the styleschhets i correct order like this
<link href="~/Content/themes/overcast/jquery-ui-1.10.3.custom.min.css" rel="stylesheet" />
<link href="~/Content/IG/structure/infragistics.css" rel="stylesheet" />
Strange is in my test project it did not matter, maybe because I only have only one control on the page
Oops looked at runtime ver. not version which is 5.0
The System.Web.Mvc.dll in the project is ver. 4.0.30319
Hello Christian,
The new MVC project in VS 2013 (.net 4.5) uses System.Web.Mvc.dll version 5. Since the Infragistics.Web.Mvc.dll 4.13.1.* is compiled against System.Web.Mvc.dll v 4 there are problems when using Infragistics.Web.Mvc.dll v 4.13.1.* in VS 2013. That's why we will release a new version of Infragistics.Web.Mvc.dll which is compiled against System.Web.Mvc.dll v 5 in order to support VS 2013. This will happen in the next service release for 13.1.
Best regards,Martin PavlovInfragistics, Inc.
I created a new mvc project in vs 2013 (.net 4.5)When I use comboFor I got this error : Entry Point not found exceptionbut when i use combo no error
Then I created the same project in vs 2012there comboFor worked as it should