cannot select items list from telerik mvc combox box
- by user384080
I'm trying to implement the comboboxfor as follow:
@(Html.Telerik().ComboBoxFor(model => model.ProductId)
.AutoFill(true)
.HighlightFirstMatch(true)
.DataBinding(binding => binding.Ajax().Select("GetProductByKeyword", "Product"))
I managed to populate the list but does not allow me to select from the list. Also, I need to show the product name but at the same time I need to bind the productId as this is Id will stored in the database.
any ideas?