trsteel88 / TrsteelCkeditorBundle

Symfony2 bundle for easy integration of the CKEditor WYSIWYG
97 stars 59 forks source link

Option required = true ? #82

Closed mykiwi closed 9 years ago

mykiwi commented 9 years ago

Hi,

Can you explain to me why it is not allowed to set the option 'required' => true ? https://github.com/trsteel88/TrsteelCkeditorBundle/blob/master/Form/Type/CkeditorType.php#L179

Thanks.

trsteel88 commented 9 years ago

CKeditor hides the textarea. Therefore, if its required, the browser will prevent the form from being submitted if the field isn't filled in.

See #74

mykiwi commented 9 years ago

Oh ok. Thanks :)