Revision #5 has been created by Kostas Apazidis (KonApaz) on Jul 10, 2013, 11:56:33 AM with the memo:
using editors of yiibooster - fix issues - configuration
« previous (#4) next (#6) »
Changes
Title
unchanged
using editors of yiibooster - fix issues - configuration
Category
unchanged
Tips
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', '|',[...]