mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
Keyword-aligned titles (capture 'select'/'multiselect'), SEO intros, FAQ on high-traffic pages, and family cross-links for the 8 DropDown pages. Also fixes the DemoSeo related-links heading from 'Related charts' to a neutral 'Related' (it was already mislabeled on the DataGrid pages).
22 lines
968 B
Plaintext
22 lines
968 B
Plaintext
@page "/dropdown-custom-objects"
|
|
|
|
<RadzenText TextStyle="TextStyle.H2" TagName="TagName.H1" class="rz-pt-8">
|
|
DropDown data binding to custom objects
|
|
</RadzenText>
|
|
<RadzenText TextStyle="TextStyle.Subtitle1" TagName="TagName.P" class="rz-pb-4">
|
|
Bind the Blazor DropDown to custom objects or enums, using TextProperty and ValueProperty to control the display text and the bound value.
|
|
</RadzenText>
|
|
|
|
<RadzenExample ComponentName="DropDown" Example="DropDownCustomObjects">
|
|
<DropDownCustomObjects />
|
|
</RadzenExample>
|
|
|
|
<RadzenText Anchor="dropdown-custom-objects#data-binding-to-enum" TextStyle="TextStyle.H5" TagName="TagName.H2" class="rz-pt-8">
|
|
DropDown data binding to enum
|
|
</RadzenText>
|
|
<RadzenText TextStyle="TextStyle.Body1" class="rz-mb-8">
|
|
Bind a DropDown directly to an enum type for easy selection of enumeration values.
|
|
</RadzenText>
|
|
<RadzenExample ComponentName="DropDown" Example="DropDownEnums">
|
|
<DropDownEnums />
|
|
</RadzenExample> |