38e982e08d8b178a7487de1cf9d3dfb9460cf3fc
1 Ext
.namespace('TYPO3.Form.Wizard.Viewport.Left.Options.Forms.Validation');
4 * The integer validation rule
6 * @class TYPO3.Form.Wizard.Viewport.Left.Options.Forms.Validation.Integer
7 * @extends TYPO3.Form.Wizard.Viewport.Left.Options.Forms.Validation.Rule
9 TYPO3
.Form
.Wizard
.Viewport
.Left
.Options
.Forms
.Validation
.Integer
= Ext
.extend(TYPO3
.Form
.Wizard
.Viewport
.Left
.Options
.Forms
.Validation
.Rule
, {
13 * The name of this rule
20 * Add the configuration object to this component
23 constructor
: function(config
) {
28 message
: TYPO3
.l10n
.localize('tx_form_system_validate_integer.message'),
29 error
: TYPO3
.l10n
.localize('tx_form_system_validate_integer.error')
32 TYPO3
.Form
.Wizard
.Viewport
.Left
.Options
.Forms
.Validation
.Integer
.superclass
.constructor
.apply(this, arguments
);
36 Ext
.reg('typo3-form-wizard-viewport-left-options-forms-validation-integer', TYPO3
.Form
.Wizard
.Viewport
.Left
.Options
.Forms
.Validation
.Integer
);