mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8f23fa99a5
The 'admin' module will be split off from 'framework', where 'framework' only provides (mostly) frontend-agnostic PHP classes. For example, HTMLEditorField.php has a TinyMCEConfig.php driver, but doesn't come with its own JS includes.
17 lines
502 B
Markdown
17 lines
502 B
Markdown
# jquery.changetracker - Change tracking for forms #
|
|
|
|
## Setup ##
|
|
|
|
jQuery('<my-form>).changetracker();
|
|
|
|
## Usage ##
|
|
|
|
Finding out if the form has changed:
|
|
jQuery('<my-form>).is('.changed');
|
|
|
|
## Options ##
|
|
|
|
* fieldSelector: jQuery selector string for tracked fields
|
|
(Default: ':input:not(:submit),:select:not(:submit)')
|
|
* ignoreFieldSelector: jQuery selector string for specifically excluded fields
|
|
* changedCssClass: CSS class attribute which is appended to all changed fields and the form itself |