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
* @deprecated Use `IgxPaginator` corresponding output instead.
294
295
* Emitted after the current page is changed.
295
296
*
297
+
* @deprecated `pageChange` is deprecated. Use the `pageChange` output exposed by the `IgxPaginator`.
298
+
* See [Paging with custom template](https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid/remote-data-operations#remote-paging-with-custom-template) for more info.
@DeprecateProperty('Use the corresponding output exposed by the `igx-paginator`.')
310
+
@DeprecateProperty('`pageChange` is deprecated. Use the `pageChange` output exposed by the `IgxPaginator`.')
307
311
@Output()
308
312
publicpageChange=newEventEmitter<number>();
309
313
310
314
/**
311
-
* @deprecated Use `IgxPaginator` corresponding output instead.
312
315
* Emitted when `perPage` property value of the grid is changed.
313
316
*
317
+
* @deprecated `perPageChange` is deprecated. Use the `perPageChange` output exposed by the `IgxPaginator`.
318
+
* See [Paging with custom template](https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid/remote-data-operations#remote-paging-with-custom-template) for more info.
* @deprecated Use `IgxPaginator` corresponding method instead.
1426
1433
* Gets/Sets the current page index.
1427
1434
*
1435
+
* @deprecated `page` is deprecated. Use the `page` input exposed by the `IgxPaginator`.
1436
+
* See [Paging with custom template](https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid/remote-data-operations#remote-paging-with-custom-template) for more info.
* @deprecated Use `IgxPaginator` corresponding method instead.
1454
1463
* Gets/Sets the number of visible items per page.
1455
1464
*
1465
+
* @deprecated `perPage` is deprecated. Use the `perPage` input exposed by the `IgxPaginator`.
1466
+
* See [Paging with custom template](https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid/remote-data-operations#remote-paging-with-custom-template) for more info.
* @deprecated Use `IgxPaginator` corresponding method instead.
3091
3104
* Goes to the desired page index.
3092
3105
*
3106
+
* @deprecated `paginate` is deprecated. Use the `paginate` method exposed by the `IgxPaginator`.
3107
+
* See [Paging with custom template](https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid/remote-data-operations#remote-paging-with-custom-template) for more info.
3108
+
*
3093
3109
* @example
3094
3110
* ```typescript
3095
3111
* this.grid1.paginate(1);
3096
3112
* ```
3097
3113
* @param val
3098
3114
*/
3099
-
@DeprecateProperty('Use the corresponding method exposed by the `igx-paginator`.')
3115
+
@DeprecateProperty('`paginate` is deprecated. Use the `paginate` method exposed by the `IgxPaginator`.')
* @deprecated Use `IgxPaginator` corresponding method instead.
3110
3125
* Goes to the next page, if the grid is not already at the last page.
3111
3126
*
3127
+
* @deprecated `nextPage` is deprecated. Use the `nextPage` method exposed by the `IgxPaginator`.
3128
+
* See [Paging with custom template](https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid/remote-data-operations#remote-paging-with-custom-template) for more info.
3129
+
*
3112
3130
* @example
3113
3131
* ```typescript
3114
3132
* this.grid1.nextPage();
3115
3133
* ```
3116
3134
*/
3117
-
@DeprecateProperty('Use the corresponding method exposed by the `igx-paginator`.')
3135
+
@DeprecateProperty('`nextPage` is deprecated. Use the `nextPage` method exposed by the `IgxPaginator`.')
3118
3136
publicnextPage(): void{
3119
3137
if(!this.isLastPage){
3120
3138
this.page+=1;
3121
3139
}
3122
3140
}
3123
3141
3124
3142
/**
3125
-
* @deprecated Use `IgxPaginator` corresponding method instead.
3126
3143
* Goes to the previous page, if the grid is not already at the first page.
3127
3144
*
3145
+
* @deprecated `previousPage` is deprecated. Use the `previousPage` method exposed by the `IgxPaginator`.
3146
+
* See [Paging with custom template](https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid/remote-data-operations#remote-paging-with-custom-template) for more info.
3147
+
*
3128
3148
* @example
3129
3149
* ```typescript
3130
3150
* this.grid1.previousPage();
3131
3151
* ```
3132
3152
*/
3133
-
@DeprecateProperty('Use the corresponding method exposed by the `igx-paginator`.')
3153
+
/* eslint-enable max-len */
3154
+
@DeprecateProperty('`previousPage` is deprecated. Use the `previousPage` method exposed by the `IgxPaginator`.')
* @deprecated Use `IgxPaginator` corresponding method instead.
4172
4193
* Gets the total number of pages.
4173
4194
*
4195
+
* @deprecated `totalPages` is deprecated. Use the `totalPages` getter exposed by the `IgxPaginator`.
4196
+
* See [Paging with custom template](https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid/remote-data-operations#remote-paging-with-custom-template) for more info.
4197
+
*
4174
4198
* @example
4175
4199
* ```typescript
4176
4200
* const totalPages = this.grid.totalPages;
4177
4201
* ```
4178
4202
*/
4179
-
@DeprecateProperty('Use the corresponding method exposed by the `igx-paginator`.')
4203
+
@DeprecateProperty('`totalPages` is deprecated. Use the `totalPages` getter exposed by the `IgxPaginator`.')
* @deprecated Use `IgxPaginator` corresponding method instead.
4189
4212
* Gets if the current page is the first page.
4190
4213
*
4214
+
* @deprecated `isFirstPage` is deprecated. Use the `isFirstPage` getter exposed by the `IgxPaginator`.
4215
+
* See [Paging with custom template](https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid/remote-data-operations#remote-paging-with-custom-template) for more info.
4216
+
*
4191
4217
* @example
4192
4218
* ```typescript
4193
4219
* const firstPage = this.grid.isFirstPage;
4194
4220
* ```
4195
4221
*/
4196
-
@DeprecateProperty('Use the corresponding method exposed by the `igx-paginator`.')
4222
+
@DeprecateProperty('`isFirstPage` is deprecated. Use the `isFirstPage` getter exposed by the `IgxPaginator`.')
* @deprecated Use `IgxPaginator` corresponding method instead.
4226
4251
* Returns if the current page is the last page.
4227
4252
*
4253
+
* @deprecated `isLastPage` is deprecated. Use the `isLastPage` output exposed by the `IgxPaginator`.
4254
+
* See [Paging with custom template](https://www.infragistics.com/products/ignite-ui-angular/angular/components/grid/remote-data-operations#remote-paging-with-custom-template) for more info.
4255
+
*
4228
4256
* @example
4229
4257
* ```typescript
4230
4258
* const lastPage = this.grid.isLastPage;
4231
4259
* ```
4232
4260
*/
4233
-
@DeprecateProperty('Use the corresponding method exposed by the `igx-paginator`.')
4261
+
/* eslint-enable max-len */
4262
+
@DeprecateProperty('`isLastPage` is deprecated. Use the `isLastPage` getter exposed by the `IgxPaginator`.')
0 commit comments