Changes
Title
unchanged
using editors of yiibooster - fix issues - configuration
Category
changed
TipHow-tos
Yii version
unchanged
Tags
unchanged
editors, bug, fix, YiiBooster, configuration
Content
changed
[...]
'color' => true,
)));
```
for redactor I found few appearance bugs. In my case (I don't know if it is generally issue) the text editor cursor and the textarea box border not displayed.
So users cannot see where they can enter the text.[...]
Yii::app()->clientScript->registerCss('redactor-fix', '.redactor_editor {width:100%;} .redactor_box {overflow:hidden;} ');
//you could remove some items of array that you do not wna
nt to appeared on text editor
echo $form->redactorRow($model, 'your_model_attribute', array('class' => 'span4', 'rows' => 5, 'width' => '100%',
'options' => array(
'minHeight' => 300,
'buttons' => array('html', '|', 'formatting', '|', 'bold', 'italic', 'deleted', '|', 'unorderedlist', 'orderedlist', 'outdent', 'indent', '|',[...]