DxAccordion.FilterNullText Property
Specifies the filter panel’s prompt text.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(null)]
[Parameter]
public string FilterNullText { get; set; }
Property Value
Type | Default | Description |
---|---|---|
String | null | The prompt text. |
Remarks
The following example uses the FilterNullText
property:
<DxAccordion ShowFilterPanel="true"
FilterNullText="Search here..."
RootItemExpandButtonDisplayMode="AccordionExpandButtonDisplayMode.End">
@* .. *@
</DxAccordion>
See Also