@@ -6,7 +6,7 @@ angular.module('ui.grid')
66
77 /**
88 * @ngdoc object
9- * @name ui.grid.core. api:PublicApi
9+ * @name ui.grid.api:PublicApi
1010 * @description Public Api for the core grid features
1111 *
1212 */
@@ -203,7 +203,7 @@ angular.module('ui.grid')
203203 /**
204204 * @ngdoc function
205205 * @name refresh
206- * @methodOf ui.grid.core. api:PublicApi
206+ * @methodOf ui.grid.api:PublicApi
207207 * @description Refresh the rendered grid on screen.
208208 * The refresh method re-runs both the columnProcessors and the
209209 * rowProcessors, as well as calling refreshCanvas to update all
@@ -220,7 +220,7 @@ angular.module('ui.grid')
220220 /**
221221 * @ngdoc function
222222 * @name queueGridRefresh
223- * @methodOf ui.grid.core. api:PublicApi
223+ * @methodOf ui.grid.api:PublicApi
224224 * @description Request a refresh of the rendered grid on screen, if multiple
225225 * calls to queueGridRefresh are made within a digest cycle only one will execute.
226226 * The refresh method re-runs both the columnProcessors and the
@@ -234,7 +234,7 @@ angular.module('ui.grid')
234234 /**
235235 * @ngdoc function
236236 * @name refreshRows
237- * @methodOf ui.grid.core. api:PublicApi
237+ * @methodOf ui.grid.api:PublicApi
238238 * @description Runs only the rowProcessors, columns remain as they were.
239239 * It then calls redrawInPlace and refreshCanvas, which adjust the grid sizing.
240240 * @returns {promise } promise that is resolved when render completes?
@@ -245,7 +245,7 @@ angular.module('ui.grid')
245245 /**
246246 * @ngdoc function
247247 * @name queueRefresh
248- * @methodOf ui.grid.core. api:PublicApi
248+ * @methodOf ui.grid.api:PublicApi
249249 * @description Requests execution of refreshCanvas, if multiple requests are made
250250 * during a digest cycle only one will run. RefreshCanvas updates the grid sizing.
251251 * @returns {promise } promise that is resolved when render completes?
@@ -256,7 +256,7 @@ angular.module('ui.grid')
256256 /**
257257 * @ngdoc function
258258 * @name handleWindowResize
259- * @methodOf ui.grid.core. api:PublicApi
259+ * @methodOf ui.grid.api:PublicApi
260260 * @description Trigger a grid resize, normally this would be picked
261261 * up by a watch on window size, but in some circumstances it is necessary
262262 * to call this manually
@@ -269,7 +269,7 @@ angular.module('ui.grid')
269269 /**
270270 * @ngdoc function
271271 * @name addRowHeaderColumn
272- * @methodOf ui.grid.core. api:PublicApi
272+ * @methodOf ui.grid.api:PublicApi
273273 * @description adds a row header column to the grid
274274 * @param {object } column def
275275 * @param {number } order Determines order of header column on grid. Lower order means header
@@ -281,7 +281,7 @@ angular.module('ui.grid')
281281 /**
282282 * @ngdoc function
283283 * @name scrollToIfNecessary
284- * @methodOf ui.grid.core. api:PublicApi
284+ * @methodOf ui.grid.api:PublicApi
285285 * @description Scrolls the grid to make a certain row and column combo visible,
286286 * in the case that it is not completely visible on the screen already.
287287 * @param {GridRow } gridRow row to make visible
@@ -294,7 +294,7 @@ angular.module('ui.grid')
294294 /**
295295 * @ngdoc function
296296 * @name scrollTo
297- * @methodOf ui.grid.core. api:PublicApi
297+ * @methodOf ui.grid.api:PublicApi
298298 * @description Scroll the grid such that the specified
299299 * row and column is in view
300300 * @param {object } rowEntity gridOptions.data[] array instance to make visible
@@ -306,7 +306,7 @@ angular.module('ui.grid')
306306 /**
307307 * @ngdoc function
308308 * @name registerRowsProcessor
309- * @methodOf ui.grid.core. api:PublicApi
309+ * @methodOf ui.grid.api:PublicApi
310310 * @description
311311 * Register a "rows processor" function. When the rows are updated,
312312 * the grid calls each registered "rows processor", which has a chance
@@ -327,7 +327,7 @@ angular.module('ui.grid')
327327 /**
328328 * @ngdoc function
329329 * @name registerColumnsProcessor
330- * @methodOf ui.grid.core. api:PublicApi
330+ * @methodOf ui.grid.api:PublicApi
331331 * @description
332332 * Register a "columns processor" function. When the columns are updated,
333333 * the grid calls each registered "columns processor", which has a chance
@@ -347,7 +347,7 @@ angular.module('ui.grid')
347347 /**
348348 * @ngdoc function
349349 * @name sortHandleNulls
350- * @methodOf ui.grid.core. api:PublicApi
350+ * @methodOf ui.grid.api:PublicApi
351351 * @description A null handling method that can be used when building custom sort
352352 * functions
353353 * @example
@@ -371,7 +371,7 @@ angular.module('ui.grid')
371371 /**
372372 * @ngdoc function
373373 * @name sortChanged
374- * @methodOf ui.grid.core. api:PublicApi
374+ * @methodOf ui.grid.api:PublicApi
375375 * @description The sort criteria on one or more columns has
376376 * changed. Provides as parameters the grid and the output of
377377 * getColumnSorting, which is an array of gridColumns
@@ -393,7 +393,7 @@ angular.module('ui.grid')
393393 /**
394394 * @ngdoc function
395395 * @name columnVisibilityChanged
396- * @methodOf ui.grid.core. api:PublicApi
396+ * @methodOf ui.grid.api:PublicApi
397397 * @description The visibility of a column has changed,
398398 * the column itself is passed out as a parameter of the event.
399399 *
@@ -412,7 +412,7 @@ angular.module('ui.grid')
412412 /**
413413 * @ngdoc method
414414 * @name notifyDataChange
415- * @methodOf ui.grid.core. api:PublicApi
415+ * @methodOf ui.grid.api:PublicApi
416416 * @description Notify the grid that a data or config change has occurred,
417417 * where that change isn't something the grid was otherwise noticing. This
418418 * might be particularly relevant where you've changed values within the data
@@ -433,7 +433,7 @@ angular.module('ui.grid')
433433 /**
434434 * @ngdoc method
435435 * @name clearAllFilters
436- * @methodOf ui.grid.core. api:PublicApi
436+ * @methodOf ui.grid.api:PublicApi
437437 * @description Clears all filters and optionally refreshes the visible rows.
438438 * @param {object } refreshRows Defaults to true.
439439 * @param {object } clearConditions Defaults to false.
0 commit comments