2

I am using tinyMCE-4.0.16 in a form in cakePHP2.4. When i click on submit, form does not submit and gives following error in console

An invalid form control with name='data[Research][description]' is not focusable.

I am using HTML5 validation "required" in textarea.

user1234
  • 335
  • 2
  • 19

1 Answers1

2

If the textarea is hidden, but it is set to "required" via HTML, it will throw that error... You're going to have to either remove "required," or have the element displayed when the form submits...

groovenectar
  • 2,828
  • 3
  • 22
  • 26