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.
3094
3107
* Goes to the desired page index.
3095
3108
*
3109
+
* @deprecated `paginate` is deprecated. Use the `paginate` method exposed by the `IgxPaginator`.
3110
+
* 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.
3111
+
*
3096
3112
* @example
3097
3113
* ```typescript
3098
3114
* this.grid1.paginate(1);
3099
3115
* ```
3100
3116
* @param val
3101
3117
*/
3102
-
@DeprecateProperty('Use the corresponding method exposed by the `igx-paginator`.')
3118
+
@DeprecateProperty('`paginate` is deprecated. Use the `paginate` method exposed by the `IgxPaginator`.')
* @deprecated Use `IgxPaginator` corresponding method instead.
3113
3128
* Goes to the next page, if the grid is not already at the last page.
3114
3129
*
3130
+
* @deprecated `nextPage` is deprecated. Use the `nextPage` method exposed by the `IgxPaginator`.
3131
+
* 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.
3132
+
*
3115
3133
* @example
3116
3134
* ```typescript
3117
3135
* this.grid1.nextPage();
3118
3136
* ```
3119
3137
*/
3120
-
@DeprecateProperty('Use the corresponding method exposed by the `igx-paginator`.')
3138
+
@DeprecateProperty('`nextPage` is deprecated. Use the `nextPage` method exposed by the `IgxPaginator`.')
3121
3139
publicnextPage(): void{
3122
3140
if(!this.isLastPage){
3123
3141
this.page+=1;
3124
3142
}
3125
3143
}
3126
3144
3127
3145
/**
3128
-
* @deprecated Use `IgxPaginator` corresponding method instead.
3129
3146
* Goes to the previous page, if the grid is not already at the first page.
3130
3147
*
3148
+
* @deprecated `previousPage` is deprecated. Use the `previousPage` method exposed by the `IgxPaginator`.
3149
+
* 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.
3150
+
*
3131
3151
* @example
3132
3152
* ```typescript
3133
3153
* this.grid1.previousPage();
3134
3154
* ```
3135
3155
*/
3136
-
@DeprecateProperty('Use the corresponding method exposed by the `igx-paginator`.')
3156
+
/* eslint-enable max-len */
3157
+
@DeprecateProperty('`previousPage` is deprecated. Use the `previousPage` method exposed by the `IgxPaginator`.')
* @deprecated Use `IgxPaginator` corresponding method instead.
4175
4196
* Gets the total number of pages.
4176
4197
*
4198
+
* @deprecated `totalPages` is deprecated. Use the `totalPages` getter exposed by the `IgxPaginator`.
4199
+
* 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.
4200
+
*
4177
4201
* @example
4178
4202
* ```typescript
4179
4203
* const totalPages = this.grid.totalPages;
4180
4204
* ```
4181
4205
*/
4182
-
@DeprecateProperty('Use the corresponding method exposed by the `igx-paginator`.')
4206
+
@DeprecateProperty('`totalPages` is deprecated. Use the `totalPages` getter exposed by the `IgxPaginator`.')
* @deprecated Use `IgxPaginator` corresponding method instead.
4192
4215
* Gets if the current page is the first page.
4193
4216
*
4217
+
* @deprecated `isFirstPage` is deprecated. Use the `isFirstPage` getter exposed by the `IgxPaginator`.
4218
+
* 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.
4219
+
*
4194
4220
* @example
4195
4221
* ```typescript
4196
4222
* const firstPage = this.grid.isFirstPage;
4197
4223
* ```
4198
4224
*/
4199
-
@DeprecateProperty('Use the corresponding method exposed by the `igx-paginator`.')
4225
+
@DeprecateProperty('`isFirstPage` is deprecated. Use the `isFirstPage` getter exposed by the `IgxPaginator`.')
* @deprecated Use `IgxPaginator` corresponding method instead.
4229
4254
* Returns if the current page is the last page.
4230
4255
*
4256
+
* @deprecated `isLastPage` is deprecated. Use the `isLastPage` output exposed by the `IgxPaginator`.
4257
+
* 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.
4258
+
*
4231
4259
* @example
4232
4260
* ```typescript
4233
4261
* const lastPage = this.grid.isLastPage;
4234
4262
* ```
4235
4263
*/
4236
-
@DeprecateProperty('Use the corresponding method exposed by the `igx-paginator`.')
4264
+
/* eslint-enable max-len */
4265
+
@DeprecateProperty('`isLastPage` is deprecated. Use the `isLastPage` getter exposed by the `IgxPaginator`.')
0 commit comments