Library Blazor Components DropDownList DropDownList FooterTemplate

FooterTemplate

Template for an additional section of the list.

razor
[Parameter]
public RenderFragment? FooterTemplate { get; set; }

Example

razor
<DropDownList T="string" ItemsSource="Items">
    <FooterTemplate>
        <Button OnClick="() => _isDialogOpen = true">
            Add
        </Button>
    </FooterTemplate>
</DropDownList>

Sign in