Commit ffb37f8e by Alexander Makarov

fixes #1001

parent 752037d9
...@@ -41,10 +41,10 @@ class DataColumn extends Column ...@@ -41,10 +41,10 @@ class DataColumn extends Column
*/ */
public $value; public $value;
/** /**
* @var string in which format should the value of each data model be displayed as (e.g. "text", "html"). * @var string|array in which format should the value of each data model be displayed as (e.g. "text", "html",
* Supported formats are determined by the [[GridView::formatter|formatter]] used by the [[GridView]]. * ['date', 'Y-m-d']). Supported formats are determined by the [[GridView::formatter|formatter]] used by
* Default format is "text" which will format the value as an HTML-encoded plain text when * the [[GridView]]. Default format is "text" which will format the value as an HTML-encoded plain text when
* [[\yii\base\Formatter]] or [[\yii\i18n\Formatter]] is used. * [[\yii\base\Formatter::format()]] or [[\yii\i18n\Formatter::format()]] is used.
*/ */
public $format = 'text'; public $format = 'text';
/** /**
......
...@@ -12,7 +12,7 @@ use yii\base\InvalidConfigException; ...@@ -12,7 +12,7 @@ use yii\base\InvalidConfigException;
use yii\db\ActiveRecord; use yii\db\ActiveRecord;
/** /**
* CUniqueValidator validates that the attribute value is unique in the corresponding database table. * UniqueValidator validates that the attribute value is unique in the corresponding database table.
* *
* @author Qiang Xue <qiang.xue@gmail.com> * @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0 * @since 2.0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment