using editors of yiibooster - fix issues - configuration

Comparing #4 with #5

Revision #5 was created by Kostas Apazidis (KonApaz) Kostas Apazidis (KonApaz) on Jul 10, 2013, 11:56:33 AM.

using editors of yiibooster - fix issues - configuration

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 w
nant 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', '|',
[...]