RadzenDataFilterProperty component. Must be placed inside a RadzenDataFilter<T>
Object
ComponentBase
IComponent
IHandleEvent
IHandleAfterRender
ComponentBase.BuildRenderTree
ComponentBase.OnInitializedAsync
ComponentBase.OnParametersSet
ComponentBase.OnParametersSetAsync
ComponentBase.StateHasChanged
ComponentBase.ShouldRender
ComponentBase.OnAfterRender
ComponentBase.OnAfterRenderAsync
ComponentBase.InvokeAsync
ComponentBase.DispatchExceptionAsync
ComponentBase.RendererInfo
ComponentBase.Assets
ComponentBase.AssignedRenderMode
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
public class RadzenDataFilterProperty<TItem> : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender| Name | Description |
|---|---|
| TItem | The type of the DataFilter item. |
RadzenDataFilterProperty component. Must be placed inside a RadzenDataFilter<T>
public RadzenDataFilterProperty<TItem>()Gets or sets the DataFilter.
public RadzenDataFilter<TItem> DataFilter { get; set; }
| Type | Description |
|---|---|
| RadzenDataFilter<TItem> | Gets or sets the DataFilter. |
Gets or sets the filter operator.
public FilterOperator FilterOperator { get; set; }
| Type | Description |
|---|---|
| FilterOperator | Gets or sets the filter operator. |
Gets or sets the filter operators.
public IEnumerable<FilterOperator> FilterOperators { get; set; }
| Type | Description |
|---|---|
| IEnumerable<FilterOperator> | Gets or sets the filter operators. |
Gets or sets the filter property name.
public string FilterProperty { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the filter property name. |
Gets the filter property type.
public Type FilterPropertyType { get; }
| Type | Description |
|---|---|
| Type | Gets the filter property type. |
Gets or sets the filter template.
public RenderFragment<CompositeFilterDescriptor> FilterTemplate { get; set; }
| Type | Description |
|---|---|
| RenderFragment<CompositeFilterDescriptor> | Gets or sets the filter template. |
Gets or sets the filter value.
public object FilterValue { get; set; }
| Type | Description |
|---|---|
| object | Gets or sets the filter value. |
Gets or sets the format string.
public string FormatString { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the format string. |
Gets or sets a value indicating whether this property is selected in the filter.
public bool IsSelected { get; set; }
| Type | Description |
|---|---|
| bool | Gets or sets a value indicating whether this property is selected in the filter. |
Gets or sets the property name.
public string Property { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the property name. |
Gets or sets the title.
public string Title { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the title. |
Gets or sets the data type.
public Type Type { get; set; }
| Type | Description |
|---|---|
| Type | Gets or sets the data type. |
Gets or sets a value indicating whether this RadzenDataGridColumn<T> is visible.
public bool Visible { get; set; }
| Type | Description |
|---|---|
| bool | Gets or sets a value indicating whether this RadzenDataGridColumn<T> is visible. |
Sets to default property filter values and operators.
public void ClearFilters()Get property filter operator.
public FilterOperator GetFilterOperator()
| Type | Description |
|---|---|
| FilterOperator |
Get possible property filter operators.
public virtual IEnumerable<FilterOperator> GetFilterOperators()
| Type | Description |
|---|---|
| IEnumerable<FilterOperator> |
Gets the filter property.
public string GetFilterProperty()
| Type | Description |
|---|---|
| string | System.String. |
Get property filter value.
public object GetFilterValue()
| Type | Description |
|---|---|
| object |
Gets if the property is visible or not.
public bool GetVisible()
| Type | Description |
|---|---|
| bool | System.Boolean. |
Set property filter operator.
public void SetFilterOperator(FilterOperator? value)
| Type | Name | Description |
|---|---|---|
| FilterOperator? | value |
Set property filter value.
public void SetFilterValue(object value)
| Type | Name | Description |
|---|---|---|
| object | value |
Set parameters as an asynchronous operation.
public override Task SetParametersAsync(ParameterView parameters)
| Type | Name | Description |
|---|---|---|
| ParameterView | parameters | The parameters. |
| Type | Description |
|---|---|
| Task | A Task representing the asynchronous operation. |