Roo/form/Field.js
[roojs1] / Roo / form / Field.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12 /**
13  * @class Roo.form.Field
14  * @extends Roo.BoxComponent
15  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
16  * @constructor
17  * Creates a new Field
18  * @param {Object} config Configuration options
19  */
20 Roo.form.Field = function(config){
21     Roo.form.Field.superclass.constructor.call(this, config);
22 };
23
24 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
25     /**
26      * @cfg {String} fieldLabel Label to use when rendering a form.
27      */
28        /**
29      * @cfg {String} qtip Mouse over tip
30      */
31      
32     /**
33      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
34      */
35     invalidClass : "x-form-invalid",
36     /**
37      * @cfg {String} invalidText The error text to use when marking a field invalid and no message is provided (defaults to "The value in this field is invalid")
38      */
39     invalidText : "The value in this field is invalid",
40     /**
41      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
42      */
43     focusClass : "x-form-focus",
44     /**
45      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
46       automatic validation (defaults to "keyup").
47      */
48     validationEvent : "keyup",
49     /**
50      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
51      */
52     validateOnBlur : true,
53     /**
54      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
55      */
56     validationDelay : 250,
57     /**
58      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
59      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
60      */
61     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "off"},
62     /**
63      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
64      */
65     fieldClass : "x-form-field",
66     /**
67      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
68      *<pre>
69 Value         Description
70 -----------   ----------------------------------------------------------------------
71 qtip          Display a quick tip when the user hovers over the field
72 title         Display a default browser title attribute popup
73 under         Add a block div beneath the field containing the error text
74 side          Add an error icon to the right of the field with a popup on hover
75 [element id]  Add the error text directly to the innerHTML of the specified element
76 </pre>
77      */
78     msgTarget : 'qtip',
79     /**
80      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
81      */
82     msgFx : 'normal',
83
84     /**
85      * @cfg {Boolean} readOnly True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.
86      */
87     readOnly : false,
88
89     /**
90      * @cfg {Boolean} disabled True to disable the field (defaults to false).
91      */
92     disabled : false,
93
94     /**
95      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
96      */
97     inputType : undefined,
98     
99     /**
100      * @cfg {Number} tabIndex The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).
101          */
102         tabIndex : undefined,
103         
104     // private
105     isFormField : true,
106
107     // private
108     hasFocus : false,
109     /**
110      * @property {Roo.Element} fieldEl
111      * Element Containing the rendered Field (with label etc.)
112      */
113     /**
114      * @cfg {Mixed} value A value to initialize this field with.
115      */
116     value : undefined,
117
118     /**
119      * @cfg {String} name The field's HTML name attribute.
120      */
121     /**
122      * @cfg {String} cls A CSS class to apply to the field's underlying element.
123      */
124
125         // private ??
126         initComponent : function(){
127         Roo.form.Field.superclass.initComponent.call(this);
128         this.addEvents({
129             /**
130              * @event focus
131              * Fires when this field receives input focus.
132              * @param {Roo.form.Field} this
133              */
134             focus : true,
135             /**
136              * @event blur
137              * Fires when this field loses input focus.
138              * @param {Roo.form.Field} this
139              */
140             blur : true,
141             /**
142              * @event specialkey
143              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
144              * {@link Roo.EventObject#getKey} to determine which key was pressed.
145              * @param {Roo.form.Field} this
146              * @param {Roo.EventObject} e The event object
147              */
148             specialkey : true,
149             /**
150              * @event change
151              * Fires just before the field blurs if the field value has changed.
152              * @param {Roo.form.Field} this
153              * @param {Mixed} newValue The new value
154              * @param {Mixed} oldValue The original value
155              */
156             change : true,
157             /**
158              * @event invalid
159              * Fires after the field has been marked as invalid.
160              * @param {Roo.form.Field} this
161              * @param {String} msg The validation message
162              */
163             invalid : true,
164             /**
165              * @event valid
166              * Fires after the field has been validated with no errors.
167              * @param {Roo.form.Field} this
168              */
169             valid : true
170         });
171     },
172
173     /**
174      * Returns the name attribute of the field if available
175      * @return {String} name The field name
176      */
177     getName: function(){
178          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
179     },
180
181     // private
182     onRender : function(ct, position){
183         Roo.form.Field.superclass.onRender.call(this, ct, position);
184         if(!this.el){
185             var cfg = this.getAutoCreate();
186             if(!cfg.name){
187                 cfg.name = this.name || this.id;
188             }
189             if(this.inputType){
190                 cfg.type = this.inputType;
191             }
192             this.el = ct.createChild(cfg, position);
193         }
194         var type = this.el.dom.type;
195         if(type){
196             if(type == 'password'){
197                 type = 'text';
198             }
199             this.el.addClass('x-form-'+type);
200         }
201         if(this.readOnly){
202             this.el.dom.readOnly = true;
203         }
204         if(this.tabIndex !== undefined){
205             this.el.dom.setAttribute('tabIndex', this.tabIndex);
206         }
207
208         this.el.addClass([this.fieldClass, this.cls]);
209         this.initValue();
210     },
211
212     /**
213      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
214      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
215      * @return {Roo.form.Field} this
216      */
217     applyTo : function(target){
218         this.allowDomMove = false;
219         this.el = Roo.get(target);
220         this.render(this.el.dom.parentNode);
221         return this;
222     },
223
224     // private
225     initValue : function(){
226         if(this.value !== undefined){
227             this.setValue(this.value);
228         }else if(this.el.dom.value.length > 0){
229             this.setValue(this.el.dom.value);
230         }
231     },
232
233     /**
234      * Returns true if this field has been changed since it was originally loaded and is not disabled.
235      */
236     isDirty : function() {
237         if(this.disabled) {
238             return false;
239         }
240         return String(this.getValue()) !== String(this.originalValue);
241     },
242
243     // private
244     afterRender : function(){
245         Roo.form.Field.superclass.afterRender.call(this);
246         this.initEvents();
247     },
248
249     // private
250     fireKey : function(e){
251         Roo.log('field ' + e.getKey());
252         if(e.isNavKeyPress()){
253             this.fireEvent("specialkey", this, e);
254         }
255     },
256
257     /**
258      * Resets the current field value to the originally loaded value and clears any validation messages
259      */
260     reset : function(){
261         this.setValue(this.originalValue);
262         this.clearInvalid();
263     },
264
265     // private
266     initEvents : function(){
267         this.el.on("keydown" , this.fireKey,  this);
268         this.el.on("focus", this.onFocus,  this);
269         this.el.on("blur", this.onBlur,  this);
270
271         // reference to original value for reset
272         this.originalValue = this.getValue();
273     },
274
275     // private
276     onFocus : function(){
277         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
278             this.el.addClass(this.focusClass);
279         }
280         if(!this.hasFocus){
281             this.hasFocus = true;
282             this.startValue = this.getValue();
283             this.fireEvent("focus", this);
284         }
285     },
286
287     beforeBlur : Roo.emptyFn,
288
289     // private
290     onBlur : function(){
291         this.beforeBlur();
292         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
293             this.el.removeClass(this.focusClass);
294         }
295         this.hasFocus = false;
296         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
297             this.validate();
298         }
299         var v = this.getValue();
300         if(String(v) !== String(this.startValue)){
301             this.fireEvent('change', this, v, this.startValue);
302         }
303         this.fireEvent("blur", this);
304     },
305
306     /**
307      * Returns whether or not the field value is currently valid
308      * @param {Boolean} preventMark True to disable marking the field invalid
309      * @return {Boolean} True if the value is valid, else false
310      */
311     isValid : function(preventMark){
312         if(this.disabled){
313             return true;
314         }
315         var restore = this.preventMark;
316         this.preventMark = preventMark === true;
317         var v = this.validateValue(this.processValue(this.getRawValue()));
318         this.preventMark = restore;
319         return v;
320     },
321
322     /**
323      * Validates the field value
324      * @return {Boolean} True if the value is valid, else false
325      */
326     validate : function(){
327         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
328             this.clearInvalid();
329             return true;
330         }
331         return false;
332     },
333
334     processValue : function(value){
335         return value;
336     },
337
338     // private
339     // Subclasses should provide the validation implementation by overriding this
340     validateValue : function(value){
341         return true;
342     },
343
344     /**
345      * Mark this field as invalid
346      * @param {String} msg The validation message
347      */
348     markInvalid : function(msg){
349         if(!this.rendered || this.preventMark){ // not rendered
350             return;
351         }
352         this.el.addClass(this.invalidClass);
353         msg = msg || this.invalidText;
354         switch(this.msgTarget){
355             case 'qtip':
356                 this.el.dom.qtip = msg;
357                 this.el.dom.qclass = 'x-form-invalid-tip';
358                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
359                     Roo.QuickTips.enable();
360                 }
361                 break;
362             case 'title':
363                 this.el.dom.title = msg;
364                 break;
365             case 'under':
366                 if(!this.errorEl){
367                     var elp = this.el.findParent('.x-form-element', 5, true);
368                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
369                     this.errorEl.setWidth(elp.getWidth(true)-20);
370                 }
371                 this.errorEl.update(msg);
372                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
373                 break;
374             case 'side':
375                 if(!this.errorIcon){
376                     var elp = this.el.findParent('.x-form-element', 5, true);
377                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
378                 }
379                 this.alignErrorIcon();
380                 this.errorIcon.dom.qtip = msg;
381                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
382                 this.errorIcon.show();
383                 this.on('resize', this.alignErrorIcon, this);
384                 break;
385             default:
386                 var t = Roo.getDom(this.msgTarget);
387                 t.innerHTML = msg;
388                 t.style.display = this.msgDisplay;
389                 break;
390         }
391         this.fireEvent('invalid', this, msg);
392     },
393
394     // private
395     alignErrorIcon : function(){
396         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
397     },
398
399     /**
400      * Clear any invalid styles/messages for this field
401      */
402     clearInvalid : function(){
403         if(!this.rendered || this.preventMark){ // not rendered
404             return;
405         }
406         this.el.removeClass(this.invalidClass);
407         switch(this.msgTarget){
408             case 'qtip':
409                 this.el.dom.qtip = '';
410                 break;
411             case 'title':
412                 this.el.dom.title = '';
413                 break;
414             case 'under':
415                 if(this.errorEl){
416                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
417                 }
418                 break;
419             case 'side':
420                 if(this.errorIcon){
421                     this.errorIcon.dom.qtip = '';
422                     this.errorIcon.hide();
423                     this.un('resize', this.alignErrorIcon, this);
424                 }
425                 break;
426             default:
427                 var t = Roo.getDom(this.msgTarget);
428                 t.innerHTML = '';
429                 t.style.display = 'none';
430                 break;
431         }
432         this.fireEvent('valid', this);
433     },
434
435     /**
436      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
437      * @return {Mixed} value The field value
438      */
439     getRawValue : function(){
440         var v = this.el.getValue();
441         if(v === this.emptyText){
442             v = '';
443         }
444         return v;
445     },
446
447     /**
448      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
449      * @return {Mixed} value The field value
450      */
451     getValue : function(){
452         var v = this.el.getValue();
453         if(v === this.emptyText || v === undefined){
454             v = '';
455         }
456         return v;
457     },
458
459     /**
460      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
461      * @param {Mixed} value The value to set
462      */
463     setRawValue : function(v){
464         return this.el.dom.value = (v === null || v === undefined ? '' : v);
465     },
466
467     /**
468      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
469      * @param {Mixed} value The value to set
470      */
471     setValue : function(v){
472         this.value = v;
473         if(this.rendered){
474             this.el.dom.value = (v === null || v === undefined ? '' : v);
475             this.validate();
476         }
477     },
478
479     adjustSize : function(w, h){
480         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
481         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
482         return s;
483     },
484
485     adjustWidth : function(tag, w){
486         tag = tag.toLowerCase();
487         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
488             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
489                 if(tag == 'input'){
490                     return w + 2;
491                 }
492                 if(tag = 'textarea'){
493                     return w-2;
494                 }
495             }else if(Roo.isOpera){
496                 if(tag == 'input'){
497                     return w + 2;
498                 }
499                 if(tag = 'textarea'){
500                     return w-2;
501                 }
502             }
503         }
504         return w;
505     }
506 });
507
508
509 // anything other than normal should be considered experimental
510 Roo.form.Field.msgFx = {
511     normal : {
512         show: function(msgEl, f){
513             msgEl.setDisplayed('block');
514         },
515
516         hide : function(msgEl, f){
517             msgEl.setDisplayed(false).update('');
518         }
519     },
520
521     slide : {
522         show: function(msgEl, f){
523             msgEl.slideIn('t', {stopFx:true});
524         },
525
526         hide : function(msgEl, f){
527             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
528         }
529     },
530
531     slideRight : {
532         show: function(msgEl, f){
533             msgEl.fixDisplay();
534             msgEl.alignTo(f.el, 'tl-tr');
535             msgEl.slideIn('l', {stopFx:true});
536         },
537
538         hide : function(msgEl, f){
539             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
540         }
541     }
542 };