Docs
API
  • filters

    Object

    Initial grid state filters.
    Doc link about filtering - Filtering.

    Example

    
    var grid = new FancyGrid({
      state: {
        filters: {
    	  age: {
    		'=': [20, 30]
    	  },
    	  name: {
    		'=': ['Ted']
    	  },
    	  salary: {
    		'>': 80000
    	  }
    	}
      }
      ...
    

    Default

    
    undefined