@@ -1863,7 +1863,7 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
1863
1863
}
1864
1864
1865
1865
/**
1866
- * @deprecated in version 12.1.0. Use `grid.paginator. page` property from `igx-paginator` component instance instead.
1866
+ * @deprecated in version 12.1.0. Use `page` property from `igx-paginator` component instance instead.
1867
1867
*
1868
1868
* Gets/Sets the current page index.
1869
1869
*
@@ -1893,7 +1893,7 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
1893
1893
}
1894
1894
1895
1895
/**
1896
- * @deprecated in version 12.1.0. Use `grid.paginator. perPage` property from `igx-paginator` component instance instead
1896
+ * @deprecated in version 12.1.0. Use `perPage` property from `igx-paginator` component instance instead
1897
1897
*
1898
1898
* Gets/Sets the number of visible items per page.
1899
1899
*
@@ -4513,7 +4513,7 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
4513
4513
}
4514
4514
4515
4515
/**
4516
- * @deprecated in version 12.1.0. Use the corresponding method `grid.paginator. nextPage()` exposed by the `igx-paginator` instance.
4516
+ * @deprecated in version 12.1.0. Use the corresponding method `nextPage()` exposed by the `igx-paginator` instance.
4517
4517
*
4518
4518
* Goes to the next page, if the grid is not already at the last page.
4519
4519
*
@@ -4529,7 +4529,7 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
4529
4529
}
4530
4530
4531
4531
/**
4532
- * @deprecated in version 12.1.0. Use the corresponding method `grid.paginator. nextPage()` exposed by the `igx-paginator` instance.
4532
+ * @deprecated in version 12.1.0. Use the corresponding method `nextPage()` exposed by the `igx-paginator` instance.
4533
4533
*
4534
4534
* Goes to the previous page, if the grid is not already at the first page.
4535
4535
*
@@ -4710,7 +4710,7 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
4710
4710
}
4711
4711
4712
4712
/**
4713
- * @deprecated in version 12.1.0. Use the corresponding method `grid.paginator. paginate()` exposed by the `igx-paginator`
4713
+ * @deprecated in version 12.1.0. Use the corresponding method `paginate()` exposed by the `igx-paginator`
4714
4714
*
4715
4715
* Goes to the desired page index.
4716
4716
*
@@ -4720,8 +4720,6 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
4720
4720
* // old
4721
4721
* this.grid1.paginate(1);
4722
4722
* // new
4723
- * this.grid1.paginator.paginate(1);
4724
- * // or with cached paginator in paginator1
4725
4723
* this.paginator1.paginate(1);
4726
4724
* ```
4727
4725
* @param val
0 commit comments