DxDropDown.HeaderContentTemplate Property
Specifies a template for content of the drop-down window’s header.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public RenderFragment<IPopupElementInfo> HeaderContentTemplate { get; set; }
Property Value
Type | Description |
---|---|
RenderFragment<IPopupElementInfo> | The header content. |
Remarks
Use the HeaderContentTemplate
property to display any UI render fragment in the drop-down window header’s content area. This template does not affect the default content area rendering (that is, paddings, alignment, etc.)
The HeaderContentTemplate
accepts an IPopupElementInfo object as the context
parameter. You can use the parameter’s CloseCallback property to implement the Close button.
<DxButton Id="showDDbtton" Click="() => IsOpenWindow = true">Show DropDown</DxButton>
<DxDropDown BodyText="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
Width="400"
@bind-IsOpen="@IsOpenWindow"
PositionTarget="#showDDbtton"
PositionMode="DropDownPositionMode.Bottom"
HeaderVisible="true"
HeaderCssClass="header-style">
<HeaderContentTemplate>
<DxButton Text="X" Click="@context.CloseCallback" />
</HeaderContentTemplate>
</DxDropDown>
@code {
bool IsOpenWindow { get; set; } = false;
}
See Also