setup: Skip browser validation when validating a form manually
fixes #4291
This commit is contained in:
parent
a4d495e17c
commit
1a5cedfee1
|
@ -120,7 +120,8 @@ class MonitoringWizard extends Wizard implements SetupWizard
|
||||||
'ignore' => true,
|
'ignore' => true,
|
||||||
'label' => t('Validate Configuration'),
|
'label' => t('Validate Configuration'),
|
||||||
'data-progress-label' => t('Validation In Progress'),
|
'data-progress-label' => t('Validation In Progress'),
|
||||||
'decorators' => array('ViewHelper')
|
'decorators' => array('ViewHelper'),
|
||||||
|
'formnovalidate' => 'formnovalidate'
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$page->getDisplayGroup('buttons')->addElement($page->getElement('backend_validation'));
|
$page->getDisplayGroup('buttons')->addElement($page->getElement('backend_validation'));
|
||||||
|
|
|
@ -374,7 +374,8 @@ class WebWizard extends Wizard implements SetupWizard
|
||||||
'ignore' => true,
|
'ignore' => true,
|
||||||
'label' => t('Validate Configuration'),
|
'label' => t('Validate Configuration'),
|
||||||
'data-progress-label' => t('Validation In Progress'),
|
'data-progress-label' => t('Validation In Progress'),
|
||||||
'decorators' => array('ViewHelper')
|
'decorators' => array('ViewHelper'),
|
||||||
|
'formnovalidate' => 'formnovalidate'
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$page->getDisplayGroup('buttons')->addElement($page->getElement('backend_validation'));
|
$page->getDisplayGroup('buttons')->addElement($page->getElement('backend_validation'));
|
||||||
|
@ -389,7 +390,8 @@ class WebWizard extends Wizard implements SetupWizard
|
||||||
'ignore' => true,
|
'ignore' => true,
|
||||||
'label' => t('Validate Configuration'),
|
'label' => t('Validate Configuration'),
|
||||||
'data-progress-label' => t('Validation In Progress'),
|
'data-progress-label' => t('Validation In Progress'),
|
||||||
'decorators' => array('ViewHelper')
|
'decorators' => array('ViewHelper'),
|
||||||
|
'formnovalidate' => 'formnovalidate'
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$page->getDisplayGroup('buttons')->addElement($page->getElement('transport_validation'));
|
$page->getDisplayGroup('buttons')->addElement($page->getElement('transport_validation'));
|
||||||
|
|
Loading…
Reference in New Issue