| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Author: lf
- * Blog: https://blog.feehi.com
- * Email: job@feehi.com
- * Created at: 2016-03-21 18:46
- */
- namespace backend\grid;
- /**
- * @inheritdoc
- */
- class DataColumn extends \yii\grid\DataColumn
- {
- public $headerOptions = [];
- public $width = '60px';
- public $contentOptions = ['style' => 'word-wrap: break-word; word-break: break-all;'];
- /**
- * @inheritdoc
- */
- public function init()
- {
- parent::init();
- if (! isset($this->headerOptions['width'])) {
- $this->headerOptions['width'] = $this->width;
- }
- }
- }
|