diff --git a/framework/grid/Column.php b/framework/grid/Column.php index 81a11ba980..39a412d34e 100644 --- a/framework/grid/Column.php +++ b/framework/grid/Column.php @@ -140,7 +140,7 @@ class Column extends Object */ protected function renderDataCellContent($model, $key, $index) { - return ($this->content !== null) ? $this->getDataCellContent : $this->grid->emptyCell; + return ($this->content !== null) ? $this->getDataCellContent($model, $key, $index) : $this->grid->emptyCell; } /**