From eb655e61046776d7ecf42a829bc9628a84ea1990 Mon Sep 17 00:00:00 2001 From: Kartik Visweswaran Date: Sun, 2 Feb 2014 21:57:00 +0000 Subject: [PATCH] Raw content return for Grid DataColumn & Column --- framework/grid/Column.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } /**