Files
radzen-blazor/RadzenBlazorDemos/Pages/DropDownCustomObjectsPage.razor
Atanas Korchev eb83d8a37b SEO: enrich DropDown family (Batch 1 of Forms)
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).
2026-06-23 13:24:35 +03:00

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>