File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,17 @@ All notable changes for each version of this project will be documented in this
14
14
### New Features
15
15
16
16
- ` 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
+ ```
17
28
- Added support for pinning columns on the right. Change the position of pinning using the new `pinning` input.
18
29
```html
19
30
<igx-grid [data] =" data" [pinning] =" pinningConfiguration" ></igx-grid >
You can’t perform that action at this time.
0 commit comments