Hi,
Combo box server side filter working only in IE10 but not IE9/8. When i open developer tool ( under network => start capturing)
ajax request is not sending for IE 9/8 but ajax request sending in IE10. I saw the HTML source code for both ie9 and ie10 . Its was same.
Please find attached scripts and css files
HTML Code.(.cshtml)
Server side code
Combo box server side filter working only in IE10 but not IE9/8. When i open developer tool ( under network => start capturing)
ajax request is not sending for IE 9/8 but ajax request sending in IE10. I saw the HTML source code for both ie9 and ie10 . Its was same.
Please find attached scripts and css files
HTML Code.(.cshtml)
<link href="@Url.Content("~/Content/kendo/2013.2.918/kendo.dataviz.min.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/kendo/2013.2.918/kendo.metro.min.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/kendo/2013.2.918/kendo.dataviz.metro.min.css")" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="@Url.Content("~/Scripts/kendo/2013.2.918/jquery.min.js")"></script>
<script type="text/javascript" src="@Url.Content("~/Scripts/kendo/2013.2.918/kendo.all.min.js")"></script>
<script type="text/javascript" src="@Url.Content("~/Scripts/kendo/2013.2.918/kendo.aspnetmvc.min.js")"></script>
<
div
>
@(Html.Kendo().ComboBox()
.Name("countires")
.Filter("contains")
.HtmlAttributes(new { style = "width:250px" })
.Placeholder("please select")
.DataTextField("Text")
.DataValueField("Value")
.DataSource(source =>
source.Read(read =>
{
read.Url("http://localhost:59590/api/Search/GetCountires");
}).ServerFiltering(true))
.HighlightFirst(true)
.IgnoreCase(true)
.AutoBind(false)
.Suggest(true)
)
</
div
>
[HttpGet]
public
List<MVC.SelectListItem> GetCountires(
string
text)
{
text =
string
.IsNullOrEmpty(text) ?
null
: text.ToUpper();
DataTable results = Counties.GetALLCountires(text);
return
ConvertToSelectListItem(results);
}