forked from CMB2/CMB2
-
Notifications
You must be signed in to change notification settings - Fork 0
Plugin code to add JS validation of "required" fields
Justin Sternberg edited this page Aug 27, 2015
·
4 revisions
Table of Contents generated with DocToc
This sample plugin code adds JS validation to any field that has the 'data-validation' attribute set to 'required':
'attributes' => array(
'data-validation' => 'required',
),
When the Publish/update button is pressed, the code will look for any "required" fields that have not been filled in. If there is one or more such fields, the code will:
- Cancel the Publish/update process
- Pop-up an alert message saying "The following fields are required and highlighted below" with a list of the fields after it
- Highlight all required fields that need to be filled in
- Center the first required field in the center of the browser so that the user sees it and can fill the field in
This sample code has not been tested with all field types available in CMB2.
Field types known to work with the code so far are:
- text
- file
- file_list
Note that the code will enable JS validation on all metaboxes on your site. It is not possible with this code to select particular metaboxes or fields for validation.
Code provided by Justin Sternberg
Plugin code can be found in the CMB2 Snippet Library.