Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2715
igCombo dropdown button i grey
posted

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()
)