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
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 >
You can’t perform that action at this time.
0 commit comments