Last active
December 16, 2015 14:40
-
-
Save somatonic/5450700 to your computer and use it in GitHub Desktop.
turn off html5 validation in form builder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// in form-builder.inc | |
$forms->addHookBefore('FormBuilderProcessor::render', null, 'hookRenderForm'); | |
function hookRenderForm(HookEvent $event) { | |
$processor = $event->object; | |
$form = $processor->getInputfieldsForm(); | |
$form->attr('novalidate', '1'); | |
} | |
// or using InputfieldForm | |
$forms->addHookBefore('InputfieldForm::render', null, 'hookRenderForm'); | |
function hookRenderForm(HookEvent $event) { | |
$form = $event->object; | |
$form->attr('novalidate', '1'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment