@@ -4,8 +4,8 @@ var module = angular.module('ui.grid');
4
4
5
5
/**
6
6
* @ngdoc object
7
- * @name ui.grid.class:RowSorter
8
- * @description RowSorter provides the default sorting mechanisms,
7
+ * @name ui.grid.class:rowSorter
8
+ * @description rowSorter provides the default sorting mechanisms,
9
9
* including guessing column types and applying appropriate sort
10
10
* algorithms
11
11
*
@@ -32,7 +32,7 @@ module.service('rowSorter', ['$parse', 'uiGridConstants', function ($parse, uiGr
32
32
33
33
/**
34
34
* @ngdoc method
35
- * @methodOf ui.grid.class:RowSorter
35
+ * @methodOf ui.grid.class:rowSorter
36
36
* @name guessSortFn
37
37
* @description Assigns a sort function to use based on the itemType in the column
38
38
* @param {string } itemType one of 'number', 'boolean', 'string', 'date', 'object'. And
@@ -61,7 +61,7 @@ module.service('rowSorter', ['$parse', 'uiGridConstants', function ($parse, uiGr
61
61
62
62
/**
63
63
* @ngdoc method
64
- * @methodOf ui.grid.class:RowSorter
64
+ * @methodOf ui.grid.class:rowSorter
65
65
* @name handleNulls
66
66
* @description Sorts nulls and undefined to the bottom (top when
67
67
* descending). Called by each of the internal sorters before
@@ -92,7 +92,7 @@ module.service('rowSorter', ['$parse', 'uiGridConstants', function ($parse, uiGr
92
92
93
93
/**
94
94
* @ngdoc method
95
- * @methodOf ui.grid.class:RowSorter
95
+ * @methodOf ui.grid.class:rowSorter
96
96
* @name basicSort
97
97
* @description Sorts any values that provide the < method, including strings
98
98
* or numbers. Handles nulls and undefined through calling handleNulls
@@ -118,7 +118,7 @@ module.service('rowSorter', ['$parse', 'uiGridConstants', function ($parse, uiGr
118
118
119
119
/**
120
120
* @ngdoc method
121
- * @methodOf ui.grid.class:RowSorter
121
+ * @methodOf ui.grid.class:rowSorter
122
122
* @name sortNumber
123
123
* @description Sorts numerical values. Handles nulls and undefined through calling handleNulls
124
124
* @param {object } a sort value a
@@ -137,7 +137,7 @@ module.service('rowSorter', ['$parse', 'uiGridConstants', function ($parse, uiGr
137
137
138
138
/**
139
139
* @ngdoc method
140
- * @methodOf ui.grid.class:RowSorter
140
+ * @methodOf ui.grid.class:rowSorter
141
141
* @name sortNumberStr
142
142
* @description Sorts numerical values that are stored in a string (i.e. parses them to numbers first).
143
143
* Handles nulls and undefined through calling handleNulls
@@ -191,7 +191,7 @@ module.service('rowSorter', ['$parse', 'uiGridConstants', function ($parse, uiGr
191
191
192
192
/**
193
193
* @ngdoc method
194
- * @methodOf ui.grid.class:RowSorter
194
+ * @methodOf ui.grid.class:rowSorter
195
195
* @name sortAlpha
196
196
* @description Sorts string values. Handles nulls and undefined through calling handleNulls
197
197
* @param {object } a sort value a
@@ -213,7 +213,7 @@ module.service('rowSorter', ['$parse', 'uiGridConstants', function ($parse, uiGr
213
213
214
214
/**
215
215
* @ngdoc method
216
- * @methodOf ui.grid.class:RowSorter
216
+ * @methodOf ui.grid.class:rowSorter
217
217
* @name sortDate
218
218
* @description Sorts date values. Handles nulls and undefined through calling handleNulls.
219
219
* Handles date strings by converting to Date object if not already an instance of Date
@@ -242,7 +242,7 @@ module.service('rowSorter', ['$parse', 'uiGridConstants', function ($parse, uiGr
242
242
243
243
/**
244
244
* @ngdoc method
245
- * @methodOf ui.grid.class:RowSorter
245
+ * @methodOf ui.grid.class:rowSorter
246
246
* @name sortBool
247
247
* @description Sorts boolean values, true is considered larger than false.
248
248
* Handles nulls and undefined through calling handleNulls
@@ -271,7 +271,7 @@ module.service('rowSorter', ['$parse', 'uiGridConstants', function ($parse, uiGr
271
271
272
272
/**
273
273
* @ngdoc method
274
- * @methodOf ui.grid.class:RowSorter
274
+ * @methodOf ui.grid.class:rowSorter
275
275
* @name getSortFn
276
276
* @description Get the sort function for the column. Looks first in
277
277
* rowSorter.colSortFnCache using the column name, failing that it
@@ -331,7 +331,7 @@ module.service('rowSorter', ['$parse', 'uiGridConstants', function ($parse, uiGr
331
331
332
332
/**
333
333
* @ngdoc method
334
- * @methodOf ui.grid.class:RowSorter
334
+ * @methodOf ui.grid.class:rowSorter
335
335
* @name prioritySort
336
336
* @description Used where multiple columns are present in the sort criteria,
337
337
* we determine which column should take precedence in the sort by sorting
@@ -384,7 +384,7 @@ module.service('rowSorter', ['$parse', 'uiGridConstants', function ($parse, uiGr
384
384
*/
385
385
/**
386
386
* @ngdoc method
387
- * @methodOf ui.grid.class:RowSorter
387
+ * @methodOf ui.grid.class:rowSorter
388
388
* @name sort
389
389
* @description sorts the grid
390
390
* @param {Object } grid the grid itself
0 commit comments