Skip to content

Commit 5b82df1

Browse files
authored
Merge pull request #6930 from IgniteUI/dkamburov/row-pinning-changelog
docs(row-pinning): Update changelog
2 parents 46e2a31 + 360585f commit 5b82df1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,17 @@ All notable changes for each version of this project will be documented in this
1414
### New Features
1515

1616
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
17+
- Added ability to pin rows to top or bottom depending on the new `pinning` input.
18+
And new API methods `pinRow` and `unpinRow`.
19+
```html
20+
<igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
21+
```
22+
```typescript
23+
public pinningConfiguration: IPinningConfig = { rows: RowPinningPosition.Bottom };
24+
```
25+
```typescript
26+
this.grid.pinRow(rowID);
27+
```
1728
- Added support for pinning columns on the right. Change the position of pinning using the new `pinning` input.
1829
```html
1930
<igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>

0 commit comments

Comments
 (0)