MatSelectValue

Selects allow users to select from a single-option menu. It functions as a wrapper around the browser's native select element.

Name Type Description
TValue Generic argument
TItem Generic argument
Attributes Dictionary<String,Object> Gets or sets a collection of additional attributes that will be applied to the created element.
ChildContent RenderFragment Child content of MatSelectValue
Class String Specifies one or more classnames for an DOM element.
Disabled Boolean
Enhanced Boolean
FullWidth Boolean
HelperText String
HelperTextPersistent Boolean
HelperTextValidation Boolean
HideDropDownIcon Boolean
Icon String
IconOnClick EventCallback<MouseEventArgs>
Id String
Items IReadOnlyList<TItem>
ItemTemplate RenderFragment<TItem>
Label String
Outlined Boolean
RefBack ForwardRef
Style String Specifies an inline style for an DOM element.
ValidationDisabled Boolean
Value TValue Gets or sets the value of the input. This should be used with two-way binding.
ValueChanged EventCallback<TValue> Gets or sets a callback that updates the bound value.
ValueExpression Expression<Func<TValue>> Gets or sets an expression that identifies the bound value.
ValueSelector Func<TItem,TValue>
Ref ElementReference Returned ElementRef reference for DOM element.
Example MatSelectValue with class array and ItemTemplate
  • Grains
  • Vegetables
  • Fruit

Selected value:

Example MatSelectValue with simple array and type transformation

  • 1
  • 2
  • 3
  • 4
  • 5

Selected value: 2

If you like MatBlazor, please put a star on GitHub.