YiiBooster icon indicating copy to clipboard operation
YiiBooster copied to clipboard

TbEditableColumn should extend TbDataColumn, not CDataColumn

Open hgc81538 opened this issue 10 years ago • 0 comments

TbEditableColumn now extends CDataColumn that is wrong.

When filter is enabled in TbGridView, element (e.g. input) inside div.filter-container is missing class form-control. So It is not rendered in Bootstrap style.

Therefore, in file YiiBooster/src/widgets/TbEditableColumn.php

Line 13 should be changed from

Yii::import('zii.widgets.grid.CDataColumn');

to

Yii::import('booster.widgets.TbDataColumn');

and Line 20 should be changed from

class TbEditableColumn extends CDataColumn

to

class TbEditableColumn extends TbDataColumn

hgc81538 avatar Aug 27 '14 13:08 hgc81538