You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -31,12 +31,14 @@ import { IgxGridModule } from 'igniteui-angular/grid';
31
31
exportclassAppModule {}
32
32
```
33
33
34
-
Each of the components, directives and helper classes in the _IgxGridModule_ can be imported either through the _grid_ sub-package or through the main bundle in _igniteui-angular_. While you don't need to import all of them to instantiate and use the grid, you usually will import them (or your editor will auto-import them for you) when declaring types that are part of the grid API.
34
+
Each of the components, directives and helper classes in the _IgxGridModule_ can be imported through the per-package entry points. Prefer subpath imports for optimal tree-shaking and smaller bundles.
// import { IgxPaginatorModule } from 'igniteui-angular/paginator';
40
+
// import { IgxButtonModule } from 'igniteui-angular/button';
41
+
// import { IgxIconModule } from 'igniteui-angular/icon';
40
42
...
41
43
42
44
@ViewChild('myGrid', { read: IgxGridComponent })
@@ -377,15 +379,24 @@ Here is a list of all public methods exposed by **IgxGridColumnComponent**:
377
379
378
380
## Filtering Conditions
379
381
380
-
You will need to import the appropriate condition types from the `igniteui-angular` package.
382
+
Use the filtering operand classes to apply conditions programmatically. Import the operand that matches your column data type and use its built-in condition names.
381
383
382
384
```typescript
383
385
import {
384
-
STRING_FILTERS,
385
-
NUMBER_FILTERS,
386
-
DATE_FILTERS,
387
-
BOOLEAN_FILTERS
388
-
} from'igniteui-angular/main';
386
+
IgxStringFilteringOperand,
387
+
IgxNumberFilteringOperand,
388
+
IgxDateFilteringOperand,
389
+
IgxBooleanFilteringOperand
390
+
} from'igniteui-angular/core';
391
+
392
+
// Example: quick filter a column (string contains)
0 commit comments