Comparing
#4 with
#6
Category
TipHow-tos
Content
[...]
'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', '|',[...]