@@ -4,13 +4,14 @@ angular.module('ui.grid')
4
4
. factory ( 'GridRow' , [ 'gridUtil' , 'uiGridConstants' , function ( gridUtil , uiGridConstants ) {
5
5
6
6
/**
7
+ * @class GridRow
7
8
* @ngdoc function
8
9
* @name ui.grid.class:GridRow
9
10
* @description GridRow is the viewModel for one logical row on the grid. A grid Row is not necessarily a one-to-one
10
11
* relation to gridOptions.data.
11
12
* @param {object } entity the array item from GridOptions.data
12
13
* @param {number } index the current position of the row in the array
13
- * @param {Grid } reference to the parent grid
14
+ * @param {Grid } grid reference to the parent grid
14
15
*/
15
16
function GridRow ( entity , index , grid ) {
16
17
@@ -64,7 +65,7 @@ angular.module('ui.grid')
64
65
/**
65
66
* @ngdoc object
66
67
* @name height
67
- * @propertyOf ui.grid.class:GridRow
68
+ * @propertyOf ui.grid.class:GridRow
68
69
* @description height of each individual row. changing the height will flag all
69
70
* row renderContainers to recalculate their canvas height
70
71
*/
@@ -86,7 +87,7 @@ angular.module('ui.grid')
86
87
* @methodOf ui.grid.class:GridRow
87
88
* @description returns the qualified field name as it exists on scope
88
89
* ie: row.entity.fieldA
89
- * @param {GridCol } col column instance
90
+ * @param {GridColumn } col column instance
90
91
* @returns {string } resulting name that can be evaluated on scope
91
92
*/
92
93
GridRow . prototype . getQualifiedColField = function ( col ) {
@@ -99,7 +100,7 @@ angular.module('ui.grid')
99
100
* @methodOf ui.grid.class:GridRow
100
101
* @description returns the qualified field name minus the row path
101
102
* ie: entity.fieldA
102
- * @param {GridCol } col column instance
103
+ * @param {GridColumn } col column instance
103
104
* @returns {string } resulting name that can be evaluated against a row
104
105
*/
105
106
GridRow . prototype . getEntityQualifiedColField = function ( col ) {
0 commit comments