ClassTelerikMultiColumnComboBox<TItem, TValue>
The class for the Telerik MultiColumnComboBox component.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Type Parameters:
TItem
TValue
Syntax:
public class TelerikMultiColumnComboBox<TItem, TValue> : ComboBoxBase<TItem, TValue>, IComponent, IHandleEvent, IHandleAfterRender, IDisposable, IPopupContainer
Inheritance: objectComponentBaseBaseComponentDataBoundComponent<TItem>TelerikSelectBase<TItem, TValue>ComboBoxBase<TItem, TValue>TelerikMultiColumnComboBox<TItem, TValue>
Implements:
Inherited Members
Constructors
TelerikMultiColumnComboBox()
Declaration
public TelerikMultiColumnComboBox()
Properties
ListHeight
Defines the height of the suggestion list container. Default value is 200px.
Declaration
[Parameter]
public string ListHeight { get; set; }
Property Value
MultiColumnComboBoxColumns
Specifies column container of the combo box. Add MultiColumnComboBoxColumn tags within this fragment.
Declaration
[Parameter]
public RenderFragment MultiColumnComboBoxColumns { get; set; }
Property Value
MultiColumnComboBoxPrefixTemplate
The content of the MultiColumnComboBox prefix.
Declaration
[Parameter]
public RenderFragment MultiColumnComboBoxPrefixTemplate { get; set; }
Property Value
MultiColumnComboBoxSettings
Defines a RenderFragment that contains all settings for the combobox. See MultiColumnComboBoxPopupSettings.
Declaration
[Parameter]
public RenderFragment MultiColumnComboBoxSettings { get; set; }
Property Value
MultiColumnComboBoxSuffixTemplate
The content of the MultiColumnComboBox suffix.
Declaration
[Parameter]
public RenderFragment MultiColumnComboBoxSuffixTemplate { get; set; }
Property Value
OnClose
Defines the OnClose Event which is fired before the suggestion list of the MultiColumnComboBox is closed.
Declaration
[Parameter]
public EventCallback<MultiColumnComboBoxCloseEventArgs> OnClose { get; set; }
Property Value
OnOpen
Defines the OnOpen Event which is fired before the suggestion list of the MultiColumnComboBox is opened.
Declaration
[Parameter]
public EventCallback<MultiColumnComboBoxOpenEventArgs> OnOpen { get; set; }
Property Value
OnRead
Fires when the data source is read. Use this to attach your own filtering logic. Once attached, you must implement all such data source operations here, the Component will no longer perform them for you.
Declaration
[Parameter]
public EventCallback<MultiColumnComboBoxReadEventArgs> OnRead { get; set; }
Property Value
RowTemplate
Defines the row template of the items.
Declaration
[Parameter]
public RenderFragment<TItem> RowTemplate { get; set; }
Property Value
RenderFragment<TItem>
ShowPrefixSeparator
Defines whether the prefix separator should be shown. The default value is true.
Declaration
[Parameter]
public bool ShowPrefixSeparator { get; set; }
Property Value
ShowSuffixSeparator
Defines whether the suffix separator should be shown. The default value is true.
Declaration
[Parameter]
public bool ShowSuffixSeparator { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
Overrides