Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Input Filter

Ghislain B edited this page Feb 6, 2018 · 32 revisions

Description

Input filter is the default filter when enabling filters.

Demo

Demo Page / Demo Component

How to use Input Filter

Simply set the flag filterable to True and and enable the filters in the Grid Options. Here is an example with a full column definition:

// define you columns, in this demo Effort Driven will use a Select Filter
this.columnDefinitions = [      
  { id: 'title', name: 'Title', field: 'title' },
  { id: 'description', name: 'Description', field: 'description', filterable: true }
];

// you also need to enable the filters in the Grid Options
this.gridOptions = {
   enableFiltering: true
};

Contents

Clone this wiki locally