| Server IP : 127.0.1.1 / Your IP : 216.73.216.83 Web Server : Apache/2.4.58 (Ubuntu) System : Linux nepub 6.8.0-88-generic #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/public_html/lib/pkp/js/controllers/form/ |
Upload File : |
/**
* @file js/controllers/form/ClientFormHandler.js
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2000-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class ClientFormHandler
* @ingroup js_controllers_form
*
* @brief Form handler that serializes the form on submission and
* triggers a "formSubmitted" event with the form data. This enables
* other widgets to use forms to request data from users although the
* data is not meant to be sent to the server through the form.
*/
(function($) {
/**
* @constructor
*
* @extends $.pkp.controllers.form.FormHandler
*
* @param {jQueryObject} $form the wrapped HTML form element.
* @param {Object} options options to be passed
* into the validator plug-in.
*/
$.pkp.controllers.form.ClientFormHandler = function($form, options) {
options.submitHandler = this.submitForm;
this.parent($form, options);
};
$.pkp.classes.Helper.inherits(
$.pkp.controllers.form.ClientFormHandler,
$.pkp.controllers.form.FormHandler);
//
// Public methods
//
/**
* Internal callback called after form validation to handle form
* submission.
*
* @param {Object} validator The validator plug-in.
* @param {HTMLElement} formElement The wrapped HTML form.
*/
$.pkp.controllers.form.ClientFormHandler.prototype.submitForm =
function(validator, formElement) {
var $form, formData;
// This form implementation will trigger an event
// with the form data.
$form = this.getHtmlElement();
// Retrieve form data.
formData = $form.serializeArray();
// Inform the server that the form has been submitted.
formData.push({name: 'clientSubmit', value: true});
// Trigger a "form submitted" event with the form
// data as argument.
this.trigger('formSubmitted', [$.param(formData)]);
};
}(jQuery));