Completed
Last Updated: 25 Mar 2020 18:10 by ADMIN
ghd258 ghd258
Created on: 02 Sep 2017 02:25
Category: Kendo UI for jQuery
Type: Feature Request
6
Combo box supports multiple columns
@Html.DevExpress().ComboBox(
    settings => {
        settings.Name = "comboBox4";
        settings.Width = 180;
        settings.SelectedIndex = 0;
        settings.Properties.DropDownWidth = 550;
        settings.Properties.DropDownStyle = DropDownStyle.DropDownList;
        settings.CallbackRouteValues = new { Controller = "Editors", Action = "MultiColumnComboBoxPartial" };
        settings.Properties.CallbackPageSize = 30;
        settings.Properties.IncrementalFilteringMode = IncrementalFilteringMode.StartsWith;
        settings.Properties.TextFormatString = "{0}";
        settings.Properties.ValueField = "CustomerID";
        settings.Properties.ValueType = typeof(string);

        settings.Properties.Columns.Add("ContactName", "ContactName", 130);
        settings.Properties.Columns.Add("CompanyName", "CompanyName", Unit.Percentage(100));
        settings.Properties.Columns.Add("Country", "Country", 60);
        settings.Properties.Columns.Add("Phone", "Phone", 100);
    }
).BindList(ViewData["Customers"]).GetHtml()
1 comment
ADMIN
Ivan Danchev
Posted on: 25 Mar 2020 18:10

Hi,

The requested functionality has been implemented in the MultiColumnComboBox component: https://demos.telerik.com/aspnet-mvc/multicolumncombobox

Regards,
Ivan Danchev
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.