Class TreeGridFilteredColumn
Options for set the filter column in load time
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript.Models
Assembly: Syncfusion.EJ.dll
Syntax
public class TreeGridFilteredColumn : EJTagHelper
Constructors
TreeGridFilteredColumn()
Declaration
public TreeGridFilteredColumn()
Properties
Field
Gets or sets the column field to filter
Declaration
[JsonProperty("field")]
public string Field { get; set; }
Property Value
Type | Description |
---|---|
System.String |
MatchCase
Declaration
[JsonProperty("matchcase")]
public bool MatchCase { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Operator
Gets or sets a type of operator for filter the column
Declaration
[JsonProperty("operator")]
[JsonConverter(typeof(StringEnumConverter))]
public FilterOperatorType Operator { get; set; }
Property Value
Type | Description |
---|---|
FilterOperatorType |
Predicate
Gets or sets a predeicate(and/or) vaue to perform filtering
Declaration
[JsonProperty("predicate")]
public string Predicate { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Value
Gets or set a value for filter the column
Declaration
[JsonProperty("value")]
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String |