|
170 | 170 | * @ngdoc property
|
171 | 171 | * @name enablePagination
|
172 | 172 | * @propertyOf ui.grid.pagination.api:GridOptions
|
173 |
| - * @description Enables pagination, defaults to true |
| 173 | + * @description Enables pagination. Defaults to true. |
174 | 174 | */
|
175 | 175 | gridOptions.enablePagination = gridOptions.enablePagination !== false;
|
176 | 176 | /**
|
177 | 177 | * @ngdoc property
|
178 | 178 | * @name enablePaginationControls
|
179 | 179 | * @propertyOf ui.grid.pagination.api:GridOptions
|
180 |
| - * @description Enables the paginator at the bottom of the grid. Turn this off, if you want to implement your |
| 180 | + * @description Enables the paginator at the bottom of the grid. Turn this off if you want to implement your |
181 | 181 | * own controls outside the grid.
|
182 | 182 | */
|
183 | 183 | gridOptions.enablePaginationControls = gridOptions.enablePaginationControls !== false;
|
|
186 | 186 | * @name useExternalPagination
|
187 | 187 | * @propertyOf ui.grid.pagination.api:GridOptions
|
188 | 188 | * @description Disables client side pagination. When true, handle the paginationChanged event and set data
|
189 |
| - * and totalItems, defaults to `false` |
| 189 | + * and totalItems. Defaults to `false` |
190 | 190 | */
|
191 | 191 | gridOptions.useExternalPagination = gridOptions.useExternalPagination === true;
|
192 | 192 | /**
|
193 | 193 | * @ngdoc property
|
194 | 194 | * @name totalItems
|
195 | 195 | * @propertyOf ui.grid.pagination.api:GridOptions
|
196 |
| - * @description Total number of items, set automatically when client side pagination, needs set by user |
| 196 | + * @description Total number of items, set automatically when using client side pagination, but needs set by user |
197 | 197 | * for server side pagination
|
198 | 198 | */
|
199 | 199 | if (gridUtil.isNullOrUndefined(gridOptions.totalItems)) {
|
|
0 commit comments