Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/js/core/factories/GridColumn.js
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ angular.module('ui.grid')
* @name cellClass
* @propertyOf ui.grid.class:GridOptions.columnDef
* @description cellClass can be a string specifying the class to append to a cell
* or it can be a function(row,rowRenderIndex, col, colRenderIndex) that returns a class name
* or it can be a function(grid, row, col, rowRenderIndex, colRenderIndex) that returns a class name
*
*/
self.cellClass = colDef.cellClass;
Expand All @@ -571,7 +571,7 @@ angular.module('ui.grid')
* @name headerCellClass
* @propertyOf ui.grid.class:GridOptions.columnDef
* @description headerCellClass can be a string specifying the class to append to a cell
* or it can be a function(row,rowRenderIndex, col, colRenderIndex) that returns a class name
* or it can be a function(grid, row, col, rowRenderIndex, colRenderIndex) that returns a class name
*
*/
self.headerCellClass = colDef.headerCellClass;
Expand Down