diff --git a/framework/grid/DataColumn.php b/framework/grid/DataColumn.php index be44ffec26..5ea8e6eee5 100644 --- a/framework/grid/DataColumn.php +++ b/framework/grid/DataColumn.php @@ -159,6 +159,6 @@ class DataColumn extends Column */ protected function renderDataCellContent($model, $key, $index) { - return $this->grid->formatter->format($this->getDataCellContent, $this->format); + return $this->grid->formatter->format($this->getDataCellContent($model, $key, $index), $this->format); } }