trAvis - MANAGER
Edit File: 01_fbuilder.ftext.js
$.fbuilder.controls[ 'ftext' ]=function(){}; $.extend( $.fbuilder.controls[ 'ftext' ].prototype, $.fbuilder.controls[ 'ffields' ].prototype, { title:"Untitled", ftype:"ftext", autocomplete:"off", predefined:"", predefinedClick:false, required:false, readonly:false, size:"medium", minlength:"", maxlength:"", equalTo:"", regExp:"", regExpMssg:"", show:function() { this.minlength = cff_esc_attr(String(this.minlength).trim()); this.maxlength = cff_esc_attr(String(this.maxlength).trim()); this.equalTo = cff_esc_attr(String(this.equalTo).trim()); this.predefined = this._getAttr('predefined', true); return '<div class="fields '+cff_esc_attr(this.csslayout)+' '+this.name+' cff-text-field" id="field'+this.form_identifier+'-'+this.index+'" style="'+cff_esc_attr(this.getCSSComponent('container'))+'"><label for="'+this.name+'" style="'+cff_esc_attr(this.getCSSComponent('label'))+'">'+this.title+''+((this.required)?"<span class='r'>*</span>":"")+'</label><div class="dfield"><input aria-label="'+cff_esc_attr(this.title)+'" id="'+this.name+'" name="'+this.name+'"'+((this.minlength.length) ? ' minlength="'+cff_esc_attr(this.minlength)+'"' : '')+((this.maxlength.length) ? ' maxlength="'+cff_esc_attr(this.maxlength)+'"' : '')+((this.equalTo.length) ? ' equalTo="#'+cff_esc_attr(this.equalTo)+this.form_identifier+'"':'')+' class="field '+this.size+((this.required)?" required":"")+'" '+((this.readonly)?'readonly':'')+' type="text" value="'+cff_esc_attr(this.predefined)+'" autocomplete="'+this.autocomplete+'" style="'+cff_esc_attr(this.getCSSComponent('input'))+'" /><span class="uh" style="'+cff_esc_attr(this.getCSSComponent('help'))+'">'+this.userhelp+'</span></div><div class="clearer"></div></div>'; }, after_show:function() { if(this.regExp != "" && typeof $[ 'validator' ] != 'undefined') { try { var parts = this.regExp.match(/(\/)(.*)(\/)([gimy]{0,4})$/i); this.regExp = (parts === null) ? new RegExp(this.regExp) : new RegExp(parts[2],parts[4].toLowerCase()); if(!('pattern' in $.validator.methods)) $.validator.addMethod('pattern', function(value, element, param) { try{ return this.optional(element) || param.test(value); } catch(err){return true;} } ); $('#'+this.name).rules('add',{'pattern':this.regExp, messages:{'pattern':this.regExpMssg}}); } catch( err ) {} } }, val:function(raw, no_quotes) { raw = raw || false; no_quotes = no_quotes || false; var e = $('[id="'+this.name+'"]:not(.ignore)'), v; if(e.length) { v = $.fbuilder.parseValStr(e.val(), raw, no_quotes); return (raw && ! no_quotes && ! isNaN( v ) ) ? '"'+v+'"' : v; } return 0; } } );