Hi team,
I have the following code:
var DropDownList = new Syncfusion.EJ2.DropDowns.DropDownList() { DataSource = ViewBag.Services, Query = "new ej.data.Query()", Width="650", AllowFiltering = true, HeaderTemplate = "<div class='row' style='background - color:transparent'><div class='col - sm' style='background - color:transparent'><span>Service ID</span></div> <div class='col - sm' style='background - color:transparent'><span>Service</span></div></div>", ItemTemplate = "<div class='row' style='background - color:transparent'><div class='col - sm' style='background - color:transparent'><span>${SERVICEID}</span></div> <div class='col - sm' style='background - color:transparent'><span>${DESCRIPTION}</span></div></div>", Fields = new Syncfusion.EJ2.DropDowns.DropDownListFieldSettings() { Value = "SERVICEID", Text = "SERVICEID" } };
and I would like to can filtering by any column (SERVICEID or DESCRIPTION), currently only can to do it by first column (SERVICEID).
Thanks,