DxTreeView.FilterNullText Property
In This Article
Specifies the filter panel’s prompt text.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[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:
Razor
<DxTreeView ShowFilterPanel="true"
FilterNullText="Search here...">
@* .. *@
</DxTreeView>
See Also