menu

ASP.NET MVC

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class SearchSettings

    Show / Hide Table of Contents

    Class SearchSettings

    Gets or sets an object that indicates whether to customize the searching behavior of the grid.

    Inheritance
    System.Object
    EJTagHelper
    SearchSettings
    Inherited Members
    EJTagHelper.GetControlDetails()
    EJTagHelper.GetControlDetails(String)
    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
    [JsonProperty("fields")]
    [Obsolete("SearchFields property has been deprecated, please use Fields property instead.")]
    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
    [JsonProperty("key")]
    [Obsolete("SearchKey property has been deprecated, , please use Key property instead.")]
    public string SearchKey { get; set; }
    Property Value
    Type Description
    System.String
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved