Let's say our table 'mug' has a column named 'color' of the type ENUM('red','green','blue').
We want to replace the textfield for the attribute color in the create and update forms of a 'mug' with a drop down list, which has the enum values as options.
The main code was contributed by zaccaria in the forum (see this post).
I merely repeat that useful peace of code here, so it is available in the wikis, and describe how you can incorporate it into giix, so the drop down list is added automatically during code generation.
Create the file ..\components\ZHtml.php with the following code:
class ZHtml extends CHtml { public static function enumDropDownList($model, $attribute, $htmlOptions=array()) { return CHtml::activeDropDownList( $model, $attribute, self::enumItem($model, $attribute), $htmlOptions); } public static function enumItem($model,$attribute) { $attr=$attribute; self::resolveName($model,$attr); preg_match('/\((.*)\)/',$model->tableSchema->columns[$attr]->dbType,$matches); foreach(explode(',', $matches[1]) as $value) { $value=str_replace("'",null,$value); $values[$value]=Yii::t('enumItem',$value); } return $values; } }
Then use it in the view files with:
echo ZHtml::enumDropDownList( $model,'color' );
If you use giix for code generation, you can put the code above into the file ..\extensions\giix-components\GxHtml.php (only the function definitions, not the 'class' part).
Then add the following code into the file ..\extensions\giix-components\GxActiveForm.php:
public function enumDropDownList($model, $attribute, $htmlOptions = array()){ return GxHtml::enumDropDownList($model, $attribute, $htmlOptions); }
Now you can use it in your view files with:
echo $form->enumDropDownList($model, 'color'));
To edit giix so it adds this line into the view files during code generation:
in the file ..\extensions\giix-core\giixCrud\GiixCrudCode.php find the function generateActiveField. Add the condition for the enum type (enclosed between /*NEW_BEGIN* and /*NEW_END*/) into the code, so it looks like:
... if (strtoupper($column->dbType) == 'TINYINT(1)' || strtoupper($column->dbType) == 'BIT' || strtoupper($column->dbType) == 'BOOL' || strtoupper($column->dbType) == 'BOOLEAN') { return "echo \$form->checkBox(\$model, '{$column->name}')"; } /*NEW-BEGIN*/ else if (stripos($column->dbType, 'enum') !== false) { return "echo \$form->enumDropDownList(\$model, '{$column->name}')"; } /*NEW_END*/ else if (strtoupper($column->dbType) == 'DATE') { ...
That's it. If something is unclear/wrong/incomplete or you have other suggestions please let me know.
Total 2 comments
The RadioButtonlist version of this code enumRadioButtonlist
although this solution have existed two years . it 's still helpful to us .
Leave a comment
Please login to leave your comment.