An invalid form control with name='Question71' is not focusable. when saving from
Permalink 1 user found helpfulError: An invalid form control with name='Question71' is not focusable. From call clickedButton = true;$('#ccm-form-submit-button').get(0).click()
If I add novalidate to the form attributes in the browser the form saves OK.
How can I add this attribute to the form.
Concrete 5 version is 5.6.3.3
I was having a similar issue with a custom form template getting an error "ccmCaptchaCode not focusable". I tried putting an edited copy of block_header_edit.php into the root/elements folder but it had no effect; I put it in the concrete/elements folder and it worked immediately.
Change: <form method="post"
to
<form novalidate method="post"