ClassTelerikFilter
A component that lets you build and edit composite filters from configured fields. Binds to Value (CompositeFilterDescriptor), renders fields from FilterFields, raises OnUpdate on change, and supports ARIA labeling via AriaLabel. Children: FilterFields.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class TelerikFilter : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentTelerikFilter
Implements:
Inherited Members
Constructors
TelerikFilter()
Declaration
public TelerikFilter()
Properties
AriaLabel
Specifies the aria-label attribute of the component.
Declaration
[Parameter]
public string AriaLabel { get; set; }
Property Value
FilterFields
Specifies the filter fields container. Add FilterField tags within this fragment. Children: FilterField tags.
Declaration
[Parameter]
public RenderFragment FilterFields { get; set; }
Property Value
OnUpdate
Fires when the component value has changed.
Declaration
[Parameter]
public EventCallback OnUpdate { get; set; }
Property Value
Value
Specifies the Value of the Filter.
Declaration
[Parameter]
public CompositeFilterDescriptor Value { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
Overrides
Dispose()
Declaration
public override void Dispose()
Overrides