Does we have an option to get the change event of LogicalOperator in RadzenDataFilter

<RadzenDataFilter @ref="dataFilter" TItem="ProductBase" LogicalFilterOperator="@logicalFilterOperator">







@code {
private LogicalFilterOperator logicalFilterOperator=LogicalFilterOperator.Or;

} when debugged on saving time even if we change the Logical Operation it doesnt reflect

ViewChanged event will be raised when you change the logical filter operator using the DataFilter UI - when you change it programmatically you don't need event since you know exactly when the value was changed.

1 Like