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
- Added `TreeGridMatchingRecordsOnlyFilteringStrategy`, which allows you to display only the records matching particular filtering condition without any trace for their parents.
17
-
- `IgxSnackbarComponent`
18
-
- Introduced new 'positionSettings' input which allows to define a custom animation and position.
19
-
- `IgxToastComponent`
20
-
- Introduced new 'positionSettings' input which allows to define a custom animation and position.
21
-
22
-
### General
23
-
- `igxGrid`, `igxHierarchicalGrid`, `igxTreeGrid`
24
-
- 'oddRowCSS' and 'evenRowCSS' properties has been deprecated
25
-
- `IgxForOf` - now takes margins into account when calculating the space that each element takes.
26
-
_Note:_ If your virtualized items contain margins, please calculate them into the `itemSize` value for the best possible initial virtualized state.
27
-
28
-
## 12.1.6
29
-
30
-
## 12.1.6
31
-
32
-
### New Features
33
-
- `igxGrid`, `igxHierarchicalGrid`, `igxTreeGrid`
34
15
- Added two public methods that spawn the add row UI for an arbitrary record in the current data view. One that accepts a rowID to use as the row the UI spawns under and the other accepting an index that has a distinct implementation for `IgxTreeGrid`. Please, refer to the official documentation for more information: [Grid Row Adding](https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid/row-adding) and [Tree Grid Row Adding](https://www.infragistics.com/products/ignite-ui-angular/angular/components/treegrid/row-adding).
35
16
36
17
_Note:_ That the new record is still added at the end of the data view, after the end-user submits it.
@@ -43,21 +24,26 @@ All notable changes for each version of this project will be documented in this
43
24
this.treeGrid.beginAddRowByIndex(10, true); // spawns the add row UI to add a child for the row at index 10
44
25
this.treeGrid.beginAddRowByIndex(null); // spawns the add row UI as the first record
45
26
```
46
-
47
-
## 12.1.3
48
-
49
-
### New Features
50
-
- `igxGrid`
51
27
- Added `headerStyles` and `headerGroupStyles` inputs to the column component.
52
-
Similar to `cellStyles` is exposes a way to bind CSS properties and style the grid headers.
28
+
Similar to `cellStyles` is exposes a way to bind CSS properties and style the grid headers.
29
+
- `igxTreeGrid`
30
+
- Added `TreeGridMatchingRecordsOnlyFilteringStrategy`, which allows you to display only the records matching particular filtering condition without any trace for their parents.
31
+
- `IgxSnackbarComponent`
32
+
- Introduced new 'positionSettings' input which allows to define a custom animation and position.
33
+
- `IgxToastComponent`
34
+
- Introduced new 'positionSettings' input which allows to define a custom animation and position.
53
35
54
-
## 12.1.2
55
-
- `igxGrid`
36
+
### General
37
+
- `igxGrid`, `igxHierarchicalGrid`, `igxTreeGrid`
38
+
- 'oddRowCSS' and 'evenRowCSS' properties has been deprecated
56
39
- The column formatter callback signature now accepts the row data as an additional argument:
The `rowData` argument may be `undefined` in remote scenarios/applying the callback on filtering labels
59
-
so make sure to check its availability.
40
+
```typescript
41
+
formatter(value: any, rowData?: any)
42
+
```
43
+
The `rowData` argument may be `undefined` in remote scenarios/applying the callback on filtering labels so make sure to check its availability.
44
+
- `IgxForOf` - now takes margins into account when calculating the space that each element takes.
60
45
46
+
_Note:_ If your virtualized items contain margins, please calculate them into the `itemSize` value for the best possible initial virtualized state.
61
47
- `IgxExcelExporterService`
62
48
- Added support for freezing column headers in **Excel**. By default, the column headers would not be frozen but this behavior can be controlled by the `freezeHeaders` option of the IgxExcelExporterOptions object.
0 commit comments