Bruno17 / MIGX

MIGX for revo 2.2 and above
83 stars 78 forks source link

Textareas not rendering properly after update #418

Open BigBlockStudios opened 8 months ago

BigBlockStudios commented 8 months ago

Textareas were not displaying correctly after update to migx 3.0.2 and modx 3.04, the problem seems to be with the ckeditor.tpl

before: <textarea id="tv{$tv->id}" style="heigth:200;" name="tv{$tv->id}" class="rtf-ckeditor tv{$tv->id}" {literal}onchange="MODx.fireResourceFormChange();"{/literal}>{$tv->get('value')|escape}</textarea>

After <textarea id="tv{$tv->id}" style="height:200px;resize:both;width:99%;" name="tv{$tv->id}" class="rtf-ckeditor tv{$tv->id}" {literal}onchange="MODx.fireResourceFormChange();"{/literal}>{$tv->get('value')|escape}</textarea>