MultiSelectT Class

Creates a multi-select input component that allows users to select multiple options from a list. The component is designed to be flexible and can be used in various contexts where multiple selections are needed.

Definition

Namespace: MobileTrack.Web.Components.Components
Assembly: MobileTrack.Web.Components (in MobileTrack.Web.Components.dll) Version: 0.7+1dadc87dcf0a0f837e19a3ce2deb7c1cd85375d1
public sealed class MultiSelect<T> : InputComponentBase<T>
where T : class
Inheritance
Object    ComponentBase    InputComponentBaseT    MultiSelectT

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:MobileTrack.Web.Components.Components.MultiSelect`1"]

Constructors

MultiSelectTInitializes a new instance of the MultiSelectT class

Properties

Accessor Accessor for the property
Label Label for the multi-select input.
Options Options the user can select from, where the key is a unique identifier (Guid) and the value is the display name for that option.
ToolTip Tooltip text that provides additional information about the multi-select input when the user hovers over it.

Methods

SetParametersAsync Parameters are loaded manually for sake of performance; if we were to use System.Reflection magic, it would hurt performance if components were used in large numbers.
(Overrides InputComponentBaseTSetParametersAsync(ParameterView))

See Also