From f54d6ea073938cccb1d0d249deba45d322b97622 Mon Sep 17 00:00:00 2001 From: MatejQ Date: Mon, 19 Oct 2015 14:25:25 +0200 Subject: [PATCH] Fixed columnDef.cellClass documentation --- src/js/core/factories/GridColumn.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/core/factories/GridColumn.js b/src/js/core/factories/GridColumn.js index 21ee0c42e7..109feef29c 100644 --- a/src/js/core/factories/GridColumn.js +++ b/src/js/core/factories/GridColumn.js @@ -551,7 +551,7 @@ angular.module('ui.grid') * @name footerCellClass * @propertyOf ui.grid.class:GridOptions.columnDef * @description footerCellClass 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.footerCellClass = colDef.footerCellClass;