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         // safari killled keypress - so keydown is now used..
268         this.el.on("keydown" , this.fireKey,  this);
269         this.el.on("focus", this.onFocus,  this);
270         this.el.on("blur", this.onBlur,  this);
271
272         // reference to original value for reset
273         this.originalValue = this.getValue();
274     },
275
276     // private
277     onFocus : function(){
278         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
279             this.el.addClass(this.focusClass);
280         }
281         if(!this.hasFocus){
282             this.hasFocus = true;
283             this.startValue = this.getValue();
284             this.fireEvent("focus", this);
285         }
286     },
287
288     beforeBlur : Roo.emptyFn,
289
290     // private
291     onBlur : function(){
292         this.beforeBlur();
293         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
294             this.el.removeClass(this.focusClass);
295         }
296         this.hasFocus = false;
297         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
298             this.validate();
299         }
300         var v = this.getValue();
301         if(String(v) !== String(this.startValue)){
302             this.fireEvent('change', this, v, this.startValue);
303         }
304         this.fireEvent("blur", this);
305     },
306
307     /**
308      * Returns whether or not the field value is currently valid
309      * @param {Boolean} preventMark True to disable marking the field invalid
310      * @return {Boolean} True if the value is valid, else false
311      */
312     isValid : function(preventMark){
313         if(this.disabled){
314             return true;
315         }
316         var restore = this.preventMark;
317         this.preventMark = preventMark === true;
318         var v = this.validateValue(this.processValue(this.getRawValue()));
319         this.preventMark = restore;
320         return v;
321     },
322
323     /**
324      * Validates the field value
325      * @return {Boolean} True if the value is valid, else false
326      */
327     validate : function(){
328         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
329             this.clearInvalid();
330             return true;
331         }
332         return false;
333     },
334
335     processValue : function(value){
336         return value;
337     },
338
339     // private
340     // Subclasses should provide the validation implementation by overriding this
341     validateValue : function(value){
342         return true;
343     },
344
345     /**
346      * Mark this field as invalid
347      * @param {String} msg The validation message
348      */
349     markInvalid : function(msg){
350         if(!this.rendered || this.preventMark){ // not rendered
351             return;
352         }
353         this.el.addClass(this.invalidClass);
354         msg = msg || this.invalidText;
355         switch(this.msgTarget){
356             case 'qtip':
357                 this.el.dom.qtip = msg;
358                 this.el.dom.qclass = 'x-form-invalid-tip';
359                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
360                     Roo.QuickTips.enable();
361                 }
362                 break;
363             case 'title':
364                 this.el.dom.title = msg;
365                 break;
366             case 'under':
367                 if(!this.errorEl){
368                     var elp = this.el.findParent('.x-form-element', 5, true);
369                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
370                     this.errorEl.setWidth(elp.getWidth(true)-20);
371                 }
372                 this.errorEl.update(msg);
373                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
374                 break;
375             case 'side':
376                 if(!this.errorIcon){
377                     var elp = this.el.findParent('.x-form-element', 5, true);
378                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
379                 }
380                 this.alignErrorIcon();
381                 this.errorIcon.dom.qtip = msg;
382                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
383                 this.errorIcon.show();
384                 this.on('resize', this.alignErrorIcon, this);
385                 break;
386             default:
387                 var t = Roo.getDom(this.msgTarget);
388                 t.innerHTML = msg;
389                 t.style.display = this.msgDisplay;
390                 break;
391         }
392         this.fireEvent('invalid', this, msg);
393     },
394
395     // private
396     alignErrorIcon : function(){
397         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
398     },
399
400     /**
401      * Clear any invalid styles/messages for this field
402      */
403     clearInvalid : function(){
404         if(!this.rendered || this.preventMark){ // not rendered
405             return;
406         }
407         this.el.removeClass(this.invalidClass);
408         switch(this.msgTarget){
409             case 'qtip':
410                 this.el.dom.qtip = '';
411                 break;
412             case 'title':
413                 this.el.dom.title = '';
414                 break;
415             case 'under':
416                 if(this.errorEl){
417                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
418                 }
419                 break;
420             case 'side':
421                 if(this.errorIcon){
422                     this.errorIcon.dom.qtip = '';
423                     this.errorIcon.hide();
424                     this.un('resize', this.alignErrorIcon, this);
425                 }
426                 break;
427             default:
428                 var t = Roo.getDom(this.msgTarget);
429                 t.innerHTML = '';
430                 t.style.display = 'none';
431                 break;
432         }
433         this.fireEvent('valid', this);
434     },
435
436     /**
437      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
438      * @return {Mixed} value The field value
439      */
440     getRawValue : function(){
441         var v = this.el.getValue();
442         if(v === this.emptyText){
443             v = '';
444         }
445         return v;
446     },
447
448     /**
449      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
450      * @return {Mixed} value The field value
451      */
452     getValue : function(){
453         var v = this.el.getValue();
454         if(v === this.emptyText || v === undefined){
455             v = '';
456         }
457         return v;
458     },
459
460     /**
461      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
462      * @param {Mixed} value The value to set
463      */
464     setRawValue : function(v){
465         return this.el.dom.value = (v === null || v === undefined ? '' : v);
466     },
467
468     /**
469      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
470      * @param {Mixed} value The value to set
471      */
472     setValue : function(v){
473         this.value = v;
474         if(this.rendered){
475             this.el.dom.value = (v === null || v === undefined ? '' : v);
476             this.validate();
477         }
478     },
479
480     adjustSize : function(w, h){
481         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
482         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
483         return s;
484     },
485
486     adjustWidth : function(tag, w){
487         tag = tag.toLowerCase();
488         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
489             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
490                 if(tag == 'input'){
491                     return w + 2;
492                 }
493                 if(tag = 'textarea'){
494                     return w-2;
495                 }
496             }else if(Roo.isOpera){
497                 if(tag == 'input'){
498                     return w + 2;
499                 }
500                 if(tag = 'textarea'){
501                     return w-2;
502                 }
503             }
504         }
505         return w;
506     }
507 });
508
509
510 // anything other than normal should be considered experimental
511 Roo.form.Field.msgFx = {
512     normal : {
513         show: function(msgEl, f){
514             msgEl.setDisplayed('block');
515         },
516
517         hide : function(msgEl, f){
518             msgEl.setDisplayed(false).update('');
519         }
520     },
521
522     slide : {
523         show: function(msgEl, f){
524             msgEl.slideIn('t', {stopFx:true});
525         },
526
527         hide : function(msgEl, f){
528             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
529         }
530     },
531
532     slideRight : {
533         show: function(msgEl, f){
534             msgEl.fixDisplay();
535             msgEl.alignTo(f.el, 'tl-tr');
536             msgEl.slideIn('l', {stopFx:true});
537         },
538
539         hide : function(msgEl, f){
540             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
541         }
542     }
543 };