You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.6 KiB
JavaScript
37 lines
1.6 KiB
JavaScript
// https://stackoverflow.com/questions/19317258/how-to-use-dijit-textarea-validation-dojo-1-9
|
|
/* eslint-disable no-new */
|
|
/* global define */
|
|
|
|
define(["dojo/_base/declare", "dojo/_base/lang", "dijit/form/SimpleTextarea", "dijit/form/ValidationTextBox"],
|
|
function(declare, lang, SimpleTextarea, ValidationTextBox) {
|
|
|
|
return declare('fox.form.ValidationTextArea', [SimpleTextarea, ValidationTextBox], {
|
|
constructor: function(params){
|
|
this.constraints = {};
|
|
this.baseClass += ' dijitValidationTextArea';
|
|
},
|
|
// eslint-disable-next-line no-template-curly-in-string
|
|
templateString: "<textarea ${!nameAttrSetting} data-dojo-attach-point='focusNode,containerNode,textbox' autocomplete='off'></textarea>",
|
|
validator: function(value, constraints) {
|
|
//console.log(this, value, constraints);
|
|
|
|
if (this.required && this._isEmpty(value))
|
|
return false;
|
|
|
|
if (this.validregexp) {
|
|
try {
|
|
new RegExp("/" + value + "/");
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return value.match(new RegExp(this._computeRegexp(constraints)));
|
|
|
|
/*return (new RegExp("^(?:" + this._computeRegexp(constraints) + ")"+(this.required?"":"?")+"$",["m"])).test(value) &&
|
|
(!this.required || !this._isEmpty(value)) &&
|
|
(this._isEmpty(value) || this.parse(value, constraints) !== undefined); // Boolean*/
|
|
}
|
|
})
|
|
});
|