Class UniqueFilterMode
Defines whether a field can have multiple filter conditions within a group or across all groups in the Query Builder.
Inheritance
System.Object
UniqueFilterMode
Namespace: Syncfusion.Blazor.QueryBuilder
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class UniqueFilterMode : Enum
Remarks
This enumeration helps enforce constraints on how many times a field can be used in the filter criteria.
Fields
All
Enforces that a field can have only one filter condition across the entire Query Builder.
Declaration
public const UniqueFilterMode All
Field Value
Type |
---|
UniqueFilterMode |
Group
Restricts a field to have only one filter condition within a single group. The same field can be used in other groups.
Declaration
public const UniqueFilterMode Group
Field Value
Type |
---|
UniqueFilterMode |
None
Allows multiple filter conditions for the same field within any group.
Declaration
public const UniqueFilterMode None
Field Value
Type |
---|
UniqueFilterMode |