This question is locked. New answers and comments are not allowed.
Hi,
I'm using release 2011.1.315 and I have a problem with an Ajax ComboBox filterable bound in my telerik Grid. When the result from filter entered by user return nothing, I got an error 500. could you help me please?
Thanks
I'm using release 2011.1.315 and I have a problem with an Ajax ComboBox filterable bound in my telerik Grid. When the result from filter entered by user return nothing, I got an error 500. could you help me please?
<% var controlName = ViewData.TemplateInfo.GetFullHtmlFieldName(String.Empty); Html.Telerik().ComboBox() .Name(controlName) .DataBinding(binding => binding.Ajax().Select("_InstructeursAjaxLoading", "RapportCours")) .Filterable(filtering => filtering.FilterMode(AutoCompleteFilterMode.Contains).MinimumChars(2)) .HighlightFirstMatch(true) .HtmlAttributes(new { style = "width:250px" }) .Render(); %>Thanks