5eb1aa54fd734500cc33d96c7a7afbae8340a3ae
[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              * @event keyup
172              * Fires after the key up
173              * @param {Roo.form.Field} this
174              * @param {Roo.EventObject}  e The event Object
175              */
176             keyup : true
177         });
178     },
179
180     /**
181      * Returns the name attribute of the field if available
182      * @return {String} name The field name
183      */
184     getName: function(){
185          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
186     },
187
188     // private
189     onRender : function(ct, position){
190         Roo.form.Field.superclass.onRender.call(this, ct, position);
191         if(!this.el){
192             var cfg = this.getAutoCreate();
193             if(!cfg.name){
194                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
195             }
196             if (!cfg.name.length) {
197                 delete cfg.name;
198             }
199             if(this.inputType){
200                 cfg.type = this.inputType;
201             }
202             this.el = ct.createChild(cfg, position);
203         }
204         var type = this.el.dom.type;
205         if(type){
206             if(type == 'password'){
207                 type = 'text';
208             }
209             this.el.addClass('x-form-'+type);
210         }
211         if(this.readOnly){
212             this.el.dom.readOnly = true;
213         }
214         if(this.tabIndex !== undefined){
215             this.el.dom.setAttribute('tabIndex', this.tabIndex);
216         }
217
218         this.el.addClass([this.fieldClass, this.cls]);
219         this.initValue();
220     },
221
222     /**
223      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
224      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
225      * @return {Roo.form.Field} this
226      */
227     applyTo : function(target){
228         this.allowDomMove = false;
229         this.el = Roo.get(target);
230         this.render(this.el.dom.parentNode);
231         return this;
232     },
233
234     // private
235     initValue : function(){
236         if(this.value !== undefined){
237             this.setValue(this.value);
238         }else if(this.el.dom.value.length > 0){
239             this.setValue(this.el.dom.value);
240         }
241     },
242
243     /**
244      * Returns true if this field has been changed since it was originally loaded and is not disabled.
245      */
246     isDirty : function() {
247         if(this.disabled) {
248             return false;
249         }
250         return String(this.getValue()) !== String(this.originalValue);
251     },
252
253     // private
254     afterRender : function(){
255         Roo.form.Field.superclass.afterRender.call(this);
256         this.initEvents();
257     },
258
259     // private
260     fireKey : function(e){
261         //Roo.log('field ' + e.getKey());
262         if(e.isNavKeyPress()){
263             this.fireEvent("specialkey", this, e);
264         }
265     },
266
267     /**
268      * Resets the current field value to the originally loaded value and clears any validation messages
269      */
270     reset : function(){
271         this.setValue(this.originalValue);
272         this.clearInvalid();
273     },
274
275     // private
276     initEvents : function(){
277         // safari killled keypress - so keydown is now used..
278         this.el.on("keydown" , this.fireKey,  this);
279         this.el.on("focus", this.onFocus,  this);
280         this.el.on("blur", this.onBlur,  this);
281         this.el.relayEvent('keyup', this);
282
283         // reference to original value for reset
284         this.originalValue = this.getValue();
285     },
286
287     // private
288     onFocus : function(){
289         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
290             this.el.addClass(this.focusClass);
291         }
292         if(!this.hasFocus){
293             this.hasFocus = true;
294             this.startValue = this.getValue();
295             this.fireEvent("focus", this);
296         }
297     },
298
299     beforeBlur : Roo.emptyFn,
300
301     // private
302     onBlur : function(){
303         this.beforeBlur();
304         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
305             this.el.removeClass(this.focusClass);
306         }
307         this.hasFocus = false;
308         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
309             this.validate();
310         }
311         var v = this.getValue();
312         if(String(v) !== String(this.startValue)){
313             this.fireEvent('change', this, v, this.startValue);
314         }
315         this.fireEvent("blur", this);
316     },
317
318     /**
319      * Returns whether or not the field value is currently valid
320      * @param {Boolean} preventMark True to disable marking the field invalid
321      * @return {Boolean} True if the value is valid, else false
322      */
323     isValid : function(preventMark){
324         if(this.disabled){
325             return true;
326         }
327         var restore = this.preventMark;
328         this.preventMark = preventMark === true;
329         var v = this.validateValue(this.processValue(this.getRawValue()));
330         this.preventMark = restore;
331         return v;
332     },
333
334     /**
335      * Validates the field value
336      * @return {Boolean} True if the value is valid, else false
337      */
338     validate : function(){
339         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
340             this.clearInvalid();
341             return true;
342         }
343         return false;
344     },
345
346     processValue : function(value){
347         return value;
348     },
349
350     // private
351     // Subclasses should provide the validation implementation by overriding this
352     validateValue : function(value){
353         return true;
354     },
355
356     /**
357      * Mark this field as invalid
358      * @param {String} msg The validation message
359      */
360     markInvalid : function(msg){
361         if(!this.rendered || this.preventMark){ // not rendered
362             return;
363         }
364         
365         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
366         
367         obj.el.addClass(this.invalidClass);
368         msg = msg || this.invalidText;
369         switch(this.msgTarget){
370             case 'qtip':
371                 obj.el.dom.qtip = msg;
372                 obj.el.dom.qclass = 'x-form-invalid-tip';
373                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
374                     Roo.QuickTips.enable();
375                 }
376                 break;
377             case 'title':
378                 this.el.dom.title = msg;
379                 break;
380             case 'under':
381                 if(!this.errorEl){
382                     var elp = this.el.findParent('.x-form-element', 5, true);
383                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
384                     this.errorEl.setWidth(elp.getWidth(true)-20);
385                 }
386                 this.errorEl.update(msg);
387                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
388                 break;
389             case 'side':
390                 if(!this.errorIcon){
391                     var elp = this.el.findParent('.x-form-element', 5, true);
392                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
393                 }
394                 this.alignErrorIcon();
395                 this.errorIcon.dom.qtip = msg;
396                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
397                 this.errorIcon.show();
398                 this.on('resize', this.alignErrorIcon, this);
399                 break;
400             default:
401                 var t = Roo.getDom(this.msgTarget);
402                 t.innerHTML = msg;
403                 t.style.display = this.msgDisplay;
404                 break;
405         }
406         this.fireEvent('invalid', this, msg);
407     },
408
409     // private
410     alignErrorIcon : function(){
411         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
412     },
413
414     /**
415      * Clear any invalid styles/messages for this field
416      */
417     clearInvalid : function(){
418         if(!this.rendered || this.preventMark){ // not rendered
419             return;
420         }
421         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
422         
423         obj.el.removeClass(this.invalidClass);
424         switch(this.msgTarget){
425             case 'qtip':
426                 obj.el.dom.qtip = '';
427                 break;
428             case 'title':
429                 this.el.dom.title = '';
430                 break;
431             case 'under':
432                 if(this.errorEl){
433                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
434                 }
435                 break;
436             case 'side':
437                 if(this.errorIcon){
438                     this.errorIcon.dom.qtip = '';
439                     this.errorIcon.hide();
440                     this.un('resize', this.alignErrorIcon, this);
441                 }
442                 break;
443             default:
444                 var t = Roo.getDom(this.msgTarget);
445                 t.innerHTML = '';
446                 t.style.display = 'none';
447                 break;
448         }
449         this.fireEvent('valid', this);
450     },
451
452     /**
453      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
454      * @return {Mixed} value The field value
455      */
456     getRawValue : function(){
457         var v = this.el.getValue();
458         
459         return v;
460     },
461
462     /**
463      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
464      * @return {Mixed} value The field value
465      */
466     getValue : function(){
467         var v = this.el.getValue();
468          
469         return v;
470     },
471
472     /**
473      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
474      * @param {Mixed} value The value to set
475      */
476     setRawValue : function(v){
477         return this.el.dom.value = (v === null || v === undefined ? '' : v);
478     },
479
480     /**
481      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
482      * @param {Mixed} value The value to set
483      */
484     setValue : function(v){
485         this.value = v;
486         if(this.rendered){
487             this.el.dom.value = (v === null || v === undefined ? '' : v);
488              this.validate();
489         }
490     },
491
492     adjustSize : function(w, h){
493         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
494         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
495         return s;
496     },
497
498     adjustWidth : function(tag, w){
499         tag = tag.toLowerCase();
500         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
501             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
502                 if(tag == 'input'){
503                     return w + 2;
504                 }
505                 if(tag == 'textarea'){
506                     return w-2;
507                 }
508             }else if(Roo.isOpera){
509                 if(tag == 'input'){
510                     return w + 2;
511                 }
512                 if(tag == 'textarea'){
513                     return w-2;
514                 }
515             }
516         }
517         return w;
518     }
519 });
520
521
522 // anything other than normal should be considered experimental
523 Roo.form.Field.msgFx = {
524     normal : {
525         show: function(msgEl, f){
526             msgEl.setDisplayed('block');
527         },
528
529         hide : function(msgEl, f){
530             msgEl.setDisplayed(false).update('');
531         }
532     },
533
534     slide : {
535         show: function(msgEl, f){
536             msgEl.slideIn('t', {stopFx:true});
537         },
538
539         hide : function(msgEl, f){
540             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
541         }
542     },
543
544     slideRight : {
545         show: function(msgEl, f){
546             msgEl.fixDisplay();
547             msgEl.alignTo(f.el, 'tl-tr');
548             msgEl.slideIn('l', {stopFx:true});
549         },
550
551         hide : function(msgEl, f){
552             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
553         }
554     }
555 };