I create a popup with a CFP with a resizable textarea:
<cms:metadata name="comment" type="string"> <label i18n="false">Commentaire</label> <description i18n="false">Commentaire</description> <widget>edition.textarea</widget> <widget-params> <param name="minHeight">200</param> <param name="resizable">true</param> </widget-params> </cms:metadata>
The textarea is no more visible. On debugging, the position of the textarea is absolute on the top left of the window.
Note: if you fix this, please add this to DefaultWidget.js => Ametys.form.widget.TextArea:
resizable: Ext.isBoolean(config.resizable) ? config.resizable : config.resizable == "true"