Class SearchSettings
Gets or sets an object that indicates whether to customize the searching behavior of the grid.
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 SearchSettings : EJTagHelper
Constructors
SearchSettings()
Declaration
public SearchSettings()
Properties
Fields
This specify the grid to search for the value in particular columns that is mentioned in the field.
Declaration
[JsonProperty("fields")]
public List<string> Fields { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
IgnoreCase
It enables or disables case-sensitivity while searching the search key in grid.
Declaration
[JsonProperty("ignoreCase")]
public bool IgnoreCase { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Key
This specifies the grid to search the particular data that is mentioned in the key.
Declaration
[JsonProperty("key")]
public string Key { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Operator
It specifies the grid to search the records based on operator.
Declaration
[JsonProperty("operator")]
[JsonConverter(typeof(StringEnumConverter))]
public Operator Operator { get; set; }
Property Value
Type | Description |
---|---|
Operator |
SearchFields
This specify the grid to search for the value in particular columns that is mentioned in the field.
Declaration
[Obsolete("SearchFields property has been deprecated, please use Fields property instead.")]
[JsonProperty("fields")]
public List<string> SearchFields { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
SearchKey
This specifies the grid to search the particular data that is mentioned in the key.
Declaration
[Obsolete("SearchKey property has been deprecated, , please use Key property instead.")]
[JsonProperty("key")]
public string SearchKey { get; set; }
Property Value
Type | Description |
---|---|
System.String |