This question is locked. New answers and comments are not allowed.
Hi!
I have problem with combobox in my MVC application.
My view:
DealKind with id "2314" exist, but I get 2314 and empty combobox (items existing).
If I don't use AJAX and DataBinding change to BindTo than combobox isn't empty.
How to solve my problem?
I have problem with combobox in my MVC application.
My view:
My controller:@model SearchingDealKind<divclass="dealKind">@(Model.DealKindId??"none")@(Html.Telerik().ComboBoxFor(x => Model.DealKindId).AutoFill(true).DataBinding(binding => binding.Ajax().Select("DealKindsLoading","Deal")).HighlightFirstMatch(true).HtmlAttributes(new{style ="width:200px"}))</div>
public ActionResult Index(){ return View(new SearchingDealKind(){DealKindId = "2314"});}