Skip to content

Commit f5e6fec

Browse files
authored
Merge pull request #7592 from IgniteUI/state-support-hiergrid-master
Add support for IgxHierarchicalGrid and IgxTreeGrid and for Expansion states in state directive
2 parents 305f03f + eade1bb commit f5e6fec

File tree

9 files changed

+2301
-951
lines changed

9 files changed

+2301
-951
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ All notable changes for each version of this project will be documented in this
99
- **Behavioral Change** - Change default positioning strategy from `ConnectedPositioningStrategy` to `AutoPositionStrategy`. The [`Auto`](https://www.infragistics.com/products/ignite-ui-angular/angular/components/overlay_position.html#auto) strategy will initially try to show the element like the Connected strategy does. If the element goes out of the viewport Auto will flip the starting point and the direction, i.e. if the direction is 'bottom', it will switch it to 'top' and so on. If after flipping direction the content goes out of the view, auto strategy will revert to initial start point and direction and will push the content into the view. Note after pushing the content it may hide the combo's input.
1010

1111
### New Features
12+
- `IgxGridState` directive
13+
- Added support for expansion states, column selection and row pinning.
14+
- Added support for `IgxTreeGrid` and `IgxHierarchicalGrid` (including child grids)
1215
- `IgxColumn`
1316
- Added `byHeader` parameter to the `autosize` method which specifies if the autosizing should be based only on the header content width.
1417
- `IgxToast`
@@ -51,6 +54,7 @@ All notable changes for each version of this project will be documented in this
5154
- `IgxHierarchicalGrid`
5255
- `onGridInitialized` - New output has been exposed. Emitted after a grid is being initialized for the corresponding row island.
5356
- **Behavioral Change** - When moving a column `DropPosition.None` is now acting like `DropPosition.AfterDropTarget`.
57+
5458
## 9.1.0
5559

5660
### General

projects/igniteui-angular/src/lib/grids/state.directive.spec.ts

Lines changed: 76 additions & 31 deletions
Large diffs are not rendered by default.

projects/igniteui-angular/src/lib/grids/state.directive.ts

Lines changed: 327 additions & 346 deletions
Large diffs are not rendered by default.

projects/igniteui-angular/src/lib/grids/state.hierarchicalgrid.spec.ts

Lines changed: 682 additions & 0 deletions
Large diffs are not rendered by default.

projects/igniteui-angular/src/lib/grids/state.treegrid.spec.ts

Lines changed: 353 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)