Hello,
I am trying to implement the combo box and it is rendering and working fine except that I don't get the "X" inside the input once a selection is made. The X is used to unselect. What is wrong with my code?
I am using version 2013.2.716 - it does work in IE but not in Firefox
Thanks,
Carrie
I am trying to implement the combo box and it is rendering and working fine except that I don't get the "X" inside the input once a selection is made. The X is used to unselect. What is wrong with my code?
I am using version 2013.2.716 - it does work in IE but not in Firefox
Thanks,
Carrie
@(Html.Kendo().ComboBoxFor(model => model.Impact)
.Placeholder("Choose One...")
.DataTextField("Text")
.DataValueField("Value")
.Suggest(true)
.DataSource(dataSource => dataSource
.Read(read => read.Action("GetImpactList", "Enum"))
))