Kendo.Mvc.UI.Fluent.MultiColumnComboBoxBuilder
Defines the fluent API for configuring the Kendo UI MultiColumnComboBox
Methods
Animation(System.Boolean)
Use to enable or disable animation of the popup element.
Parameters
enable System.Boolean
The boolean value.
Example (ASPX)
<%= Html.Kendo().MultiColumnComboBox()
.Name("MultiColumnComboBox")
.Animation(false) //toggle effect
%>
Animation(System.Action<Kendo.Mvc.UI.Fluent.PopupAnimationBuilder>)
Configures the animation effects of the widget.
Parameters
animationAction System.Action<Kendo.Mvc.UI.Fluent.PopupAnimationBuilder>
The action which configures the animation effects.
Example (ASPX)
<%= Html.Kendo().MultiColumnComboBox()
.Name("MultiColumnComboBox")
.Animation(animation =>
{
animation.Open(open =>
{
open.SlideIn(SlideDirection.Down);
})
})
%>
BindTo(System.Collections.IEnumerable)
Binds the ComboBox to an IEnumerable list.
Parameters
data System.Collections.IEnumerable
The data source.
Example (ASPX)
<%= Html.Telerik().MultiColumnComboBox()
.Name("MultiColumnComboBox")
.DataTextField("CompanyName")
.DataValueField("CompanyID")
.BindTo(new List<Company>
{
new Company {
CompanyName = "Text1",
CompanyID = "Value1"
},
new Company {
CompanyName = "Text2",
CompanyID = "Value2"
}
})
%>
BindTo(System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem>)
Binds the ComboBox to a list of SelectListItem.
Parameters
dataSource System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem>
The data source.
Example (ASPX)
<%= Html.Telerik().MultiColumnComboBox()
.Name("MultiColumnComboBox")
.BindTo(new List<SelectListItem>
{
new SelectListItem{
Text = "Text1",
Value = "Value1"
},
new SelectListItem{
Text = "Text2",
Value = "Value2"
}
})
%>
Items(System.Action<Kendo.Mvc.UI.Fluent.SelectListItemFactory>)
Defines the items in the ComboBox
Parameters
addAction System.Action<Kendo.Mvc.UI.Fluent.SelectListItemFactory>
The add action.
Example (ASPX)
<%= Html.Kendo().MultiColumnComboBox()
.Name("MultiColumnComboBox")
.Items(items =>
{
items.Add().Text("First Item");
items.Add().Text("Second Item");
})
%>
DataSource(System.Action<Kendo.Mvc.UI.Fluent.ReadOnlyDataSourceBuilder>)
Sets the data source configuration of the ComboBox.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ReadOnlyDataSourceBuilder>
The lambda which configures the data source
Filter(System.String)
The filtering method used to determine the suggestions for the current value. Filtration is turned off by default. The supported filter values are startswith, endswith and contains.
Parameters
value System.String
The value for Filter
SelectedIndex(System.Int32)
Use it to set selected item index
Parameters
index System.Int32
Item index.
Example (ASPX)
<%= Html.Kendo().MultiColumnComboBox()
.Name("MultiColumnComboBox")
.SelectedIndex(0);
%>
AutoBind(System.Boolean)
Controls whether to bind the widget to the data source on initialization.
Parameters
value System.Boolean
The value for AutoBind
CascadeFrom(System.String)
Use it to set the Id of the parent MultiColumnComboBox widget.Help topic showing how cascading functionality works
Parameters
value System.String
The value for CascadeFrom
CascadeFromField(System.String)
Defines the field to be used to filter the data source. If not defined the parent's dataValueField option will be used.Help topic showing how cascading functionality works
Parameters
value System.String
The value for CascadeFromField
CascadeFromParentField(System.String)
Defines the parent field to be used to retain value from. This value will be used further to filter the dataSource. If not defined the value from the parent's dataValueField will be used.
Parameters
value System.String
The value for CascadeFromParentField
Columns(System.Action<Kendo.Mvc.UI.Fluent.MultiColumnComboBoxColumnFactory>)
Defines the columns rendered in the table of the MultiColumnComboBox.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.MultiColumnComboBoxColumnFactory>
The configurator for the columns setting.
ClearButton(System.Boolean)
Unless this options is set to false, a button will appear when hovering the widget. Clicking that button will reset the widget's value and will trigger the change event.
Parameters
value System.Boolean
The value for ClearButton
DataTextField(System.String)
The field of the data item that provides the text content of the list items. The widget will filter the data source based on this field.
Parameters
value System.String
The value for DataTextField
DataValueField(System.String)
The field of the data item that provides the value of the widget.
Parameters
value System.String
The value for DataValueField
Delay(System.Double)
The delay in milliseconds between a keystroke and when the widget displays the popup.
Parameters
value System.Double
The value for Delay
DropDownWidth(System.String)
The width of the dropdown. Numeric values are treated as pixels.
Parameters
value System.String
The value for DropDownWidth
Enable(System.Boolean)
If set to false the widget will be disabled and will not allow user input. The widget is enabled by default and allows user input.
Parameters
value System.Boolean
The value for Enable
EnforceMinLength(System.Boolean)
If set to true the widget will not show all items when the text of the search input cleared. By default the widget shows all items when the text of the search input is cleared. Works in conjunction with minLength.
Parameters
value System.Boolean
The value for EnforceMinLength
EnforceMinLength
If set to true the widget will not show all items when the text of the search input cleared. By default the widget shows all items when the text of the search input is cleared. Works in conjunction with minLength.
FilterFields(System.String[])
Enables multicolumn filtering.
Parameters
value System.String[]
The value for FilterFields
FixedGroupTemplate(System.String)
The template used to render the fixed header group. By default the widget displays only the value of the current group.
Parameters
value System.String
The value for FixedGroupTemplate
FixedGroupTemplateId(System.String)
The template used to render the fixed header group. By default the widget displays only the value of the current group.
Parameters
templateId System.String
The ID of the template element for FixedGroupTemplate
FooterTemplate(System.String)
The template used to render the footer template. The footer template receives the widget itself as a part of the data argument. Use the widget fields directly in the template.
Parameters
value System.String
The value for FooterTemplate
FooterTemplateId(System.String)
The template used to render the footer template. The footer template receives the widget itself as a part of the data argument. Use the widget fields directly in the template.
Parameters
templateId System.String
The ID of the template element for FooterTemplate
GroupTemplate(System.String)
The template used to render the groups. By default the widget displays only the value of the group.
Parameters
value System.String
The value for GroupTemplate
GroupTemplateId(System.String)
The template used to render the groups. By default the widget displays only the value of the group.
Parameters
templateId System.String
The ID of the template element for GroupTemplate
Height(System.Double)
The height of the suggestion popup in pixels. The default value is 200 pixels.
Parameters
value System.Double
The value for Height
HighlightFirst(System.Boolean)
If set to true the first suggestion will be automatically highlighted.
Parameters
value System.Boolean
The value for HighlightFirst
IgnoreCase(System.Boolean)
If set to false case-sensitive search will be performed to find suggestions. The widget performs case-insensitive searching by default.
Parameters
value System.Boolean
The value for IgnoreCase
Messages(System.Action<Kendo.Mvc.UI.Fluent.MultiColumnComboBoxMessagesSettingsBuilder>)
The text messages displayed in the widget. Use this option to customize or localize the messages.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.MultiColumnComboBoxMessagesSettingsBuilder>
The configurator for the messages setting.
MinLength(System.Double)
The minimum number of characters the user must type before a search is performed. Set to higher value than 1 if the search could match a lot of items.
Parameters
value System.Double
The value for MinLength
NoDataTemplate(System.String)
The template used to render the "no data" template, which will be displayed if no results are found or the underlying data source is empty. The noData template receives the widget itself as a part of the data argument. The template will be evaluated on every widget data bound.
Parameters
value System.String
The value for NoDataTemplate
NoDataTemplateId(System.String)
The template used to render the "no data" template, which will be displayed if no results are found or the underlying data source is empty. The noData template receives the widget itself as a part of the data argument. The template will be evaluated on every widget data bound.
Parameters
templateId System.String
The ID of the template element for NoDataTemplate
Placeholder(System.String)
The hint displayed by the widget when it is empty. Not set by default.
Parameters
value System.String
The value for Placeholder
Popup(System.Action<Kendo.Mvc.UI.Fluent.MultiColumnComboBoxPopupSettingsBuilder>)
The options that will be used for the popup initialization. For more details about the available options refer to Popup documentation.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.MultiColumnComboBoxPopupSettingsBuilder>
The configurator for the popup setting.
Suggest(System.Boolean)
If set to true the widget will automatically use the first suggestion as its value.
Parameters
value System.Boolean
The value for Suggest
Suggest
If set to true the widget will automatically use the first suggestion as its value.
SyncValueAndText(System.Boolean)
When set to true the widget will automatically set selected value to the typed custom text. Set the option to false to clear the selected value but keep the custom text.
Parameters
value System.Boolean
The value for SyncValueAndText
HeaderTemplate(System.String)
Specifies a static HTML content, which will be rendered as a header of the popup element.
Parameters
value System.String
The value for HeaderTemplate
HeaderTemplateId(System.String)
Specifies a static HTML content, which will be rendered as a header of the popup element.
Parameters
templateId System.String
The ID of the template element for HeaderTemplate
Text(System.String)
The text of the widget used when the autoBind is set to false.
Parameters
value System.String
The value for Text
Value(System.String)
The value of the widget.
Parameters
value System.String
The value for Value
ValuePrimitive(System.Boolean)
Specifies the value binding behavior for the widget when the initial model value is null. If set to true, the View-Model field will be updated with the selected item value field. If set to false, the View-Model field will be updated with the selected item.
Parameters
value System.Boolean
The value for ValuePrimitive
ValuePrimitive
Specifies the value binding behavior for the widget when the initial model value is null. If set to true, the View-Model field will be updated with the selected item value field. If set to false, the View-Model field will be updated with the selected item.
Virtual(System.Action<Kendo.Mvc.UI.Fluent.MultiColumnComboBoxVirtualSettingsBuilder>)
Enables the virtualization feature of the widget. The configuration can be set on an object, which contains two properties - itemHeight and valueMapper.For detailed information, refer to the article on virtualization.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.MultiColumnComboBoxVirtualSettingsBuilder>
The configurator for the virtual setting.
Virtual
Enables the virtualization feature of the widget. The configuration can be set on an object, which contains two properties - itemHeight and valueMapper.For detailed information, refer to the article on virtualization.
Virtual(System.Boolean)
Enables the virtualization feature of the widget. The configuration can be set on an object, which contains two properties - itemHeight and valueMapper.For detailed information, refer to the article on virtualization.
Parameters
enabled System.Boolean
Enables or disables the virtual option.
Filter(Kendo.Mvc.UI.FilterType)
The filtering method used to determine the suggestions for the current value.
Parameters
value Kendo.Mvc.UI.FilterType
The value for Filter
Size(Kendo.Mvc.UI.ComponentSize)
Sets the size of the component.
Parameters
value Kendo.Mvc.UI.ComponentSize
The value for Size
Rounded(Kendo.Mvc.UI.Rounded)
Sets a value controlling the border radius.
Parameters
value Kendo.Mvc.UI.Rounded
The value for Rounded
FillMode(Kendo.Mvc.UI.FillMode)
Sets a value controlling how the color is applied.
Parameters
value Kendo.Mvc.UI.FillMode
The value for FillMode
Events(System.Action<Kendo.Mvc.UI.Fluent.MultiColumnComboBoxEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.MultiColumnComboBoxEventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().MultiColumnComboBox()
.Name("MultiColumnComboBox")
.Events(events => events
.Change("onChange")
)
)