Roo/form/ComboBoxArray.js
[roojs1] / Roo / form / ComboBoxArray.js
1 /*
2  * Copyright(c) 2010-2012, Roo J Solutions Limited
3  *
4  * Licence LGPL
5  *
6  */
7
8 /**
9  * @class Roo.form.ComboBoxArray
10  * @extends Roo.form.TextField
11  * A facebook style adder... for lists of email / people / countries  etc...
12  * pick multiple items from a combo box, and shows each one.
13  *
14  *  Fred [x]  Brian [x]  [Pick another |v]
15  *
16  *
17  *  For this to work: it needs various extra information
18  *    - normal combo problay has
19  *      name, hiddenName
20  *    + displayField, valueField
21  *
22  *    For our purpose...
23  *
24  *
25  *   If we change from 'extends' to wrapping...
26  *   
27  *  
28  *
29  
30  
31  * @constructor
32  * Create a new ComboBoxArray.
33  * @param {Object} config Configuration options
34  */
35  
36
37 Roo.form.ComboBoxArray = function(config)
38 {
39     this.addEvents({
40         /**
41          * @event remove
42          * Fires when remove the value from the list
43              * @param {Roo.form.ComboBoxArray} _self This combo box array
44              * @param {Roo.form.ComboBoxArray.Item} item removed item
45              */
46         'remove' : true
47         
48         
49     });
50     
51     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
52     
53     this.items = new Roo.util.MixedCollection(false);
54     
55     // construct the child combo...
56     
57     
58     
59     
60    
61     
62 }
63
64  
65 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
66
67     /**
68      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
69      */
70     
71     lastData : false,
72     
73     // behavies liek a hiddne field
74     inputType:      'hidden',
75     /**
76      * @cfg {Number} width The width of the box that displays the selected element
77      */ 
78     width:          300,
79
80     
81     
82     /**
83      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
84      */
85     name : false,
86     /**
87      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
88      */
89     hiddenName : false,
90     
91     
92     // private the array of items that are displayed..
93     items  : false,
94     // private - the hidden field el.
95     hiddenEl : false,
96     // private - the filed el..
97     el : false,
98     
99     //validateValue : function() { return true; }, // all values are ok!
100     //onAddClick: function() { },
101     
102     onRender : function(ct, position) 
103     {
104         
105         // create the standard hidden element
106         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
107         
108         
109         // give fake names to child combo;
110         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
111         this.combo.name = this.name? (this.name+'-subcombo') : this.name;
112         
113         this.combo = Roo.factory(this.combo, Roo.form);
114         this.combo.onRender(ct, position);
115         if (typeof(this.combo.width) != 'undefined') {
116             this.combo.onResize(this.combo.width,0);
117         }
118         
119         this.combo.initEvents();
120         
121         // assigned so form know we need to do this..
122         this.store          = this.combo.store;
123         this.valueField     = this.combo.valueField;
124         this.displayField   = this.combo.displayField ;
125         
126         
127         this.combo.wrap.addClass('x-cbarray-grp');
128         
129         var cbwrap = this.combo.wrap.createChild(
130             {tag: 'div', cls: 'x-cbarray-cb'},
131             this.combo.el.dom
132         );
133         
134              
135         this.hiddenEl = this.combo.wrap.createChild({
136             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
137         });
138         this.el = this.combo.wrap.createChild({
139             tag: 'input',  type:'hidden' , name: this.name, value : ''
140         });
141          //   this.el.dom.removeAttribute("name");
142         
143         
144         this.outerWrap = this.combo.wrap;
145         this.wrap = cbwrap;
146         
147         this.outerWrap.setWidth(this.width);
148         this.outerWrap.dom.removeChild(this.el.dom);
149         
150         this.wrap.dom.appendChild(this.el.dom);
151         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
152         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
153         
154         this.combo.trigger.setStyle('position','relative');
155         this.combo.trigger.setStyle('left', '0px');
156         this.combo.trigger.setStyle('top', '2px');
157         
158         this.combo.el.setStyle('vertical-align', 'text-bottom');
159         
160         //this.trigger.setStyle('vertical-align', 'top');
161         
162         // this should use the code from combo really... on('add' ....)
163         if (this.adder) {
164             
165         
166             this.adder = this.outerWrap.createChild(
167                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
168             var _t = this;
169             this.adder.on('click', function(e) {
170                 _t.fireEvent('adderclick', this, e);
171             }, _t);
172         }
173         //var _t = this;
174         //this.adder.on('click', this.onAddClick, _t);
175         
176         
177         this.combo.on('select', function(cb, rec, ix) {
178             this.addItem(rec.data);
179             
180             cb.setValue('');
181             cb.el.dom.value = '';
182             //cb.lastData = rec.data;
183             // add to list
184             
185         }, this);
186         
187         
188     },
189     
190     
191     getName: function()
192     {
193         // returns hidden if it's set..
194         if (!this.rendered) {return ''};
195         return  this.hiddenName ? this.hiddenName : this.name;
196         
197     },
198     
199     
200     onResize: function(w, h){
201         
202         return;
203         // not sure if this is needed..
204         //this.combo.onResize(w,h);
205         
206         if(typeof w != 'number'){
207             // we do not handle it!?!?
208             return;
209         }
210         var tw = this.combo.trigger.getWidth();
211         tw += this.addicon ? this.addicon.getWidth() : 0;
212         tw += this.editicon ? this.editicon.getWidth() : 0;
213         var x = w - tw;
214         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
215             
216         this.combo.trigger.setStyle('left', '0px');
217         
218         if(this.list && this.listWidth === undefined){
219             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
220             this.list.setWidth(lw);
221             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
222         }
223         
224     
225         
226     },
227     
228     addItem: function(rec)
229     {
230         var valueField = this.combo.valueField;
231         var displayField = this.combo.displayField;
232         if (this.items.indexOfKey(rec[valueField]) > -1) {
233             Roo.log("GOT Record");
234             Roo.log(rec);
235             return;
236         }
237         
238         var x = new Roo.form.ComboBoxArray.Item({
239             //id : rec[this.idField],
240             data : rec,
241             displayField : displayField ,
242             tipField : displayField ,
243             cb : this
244         });
245         // use the 
246         this.items.add(rec[valueField],x);
247         // add it before the element..
248         this.updateHiddenEl();
249         x.render(this.outerWrap, this.wrap.dom);
250         // add the image handler..
251     },
252     
253     updateHiddenEl : function()
254     {
255         this.validate();
256         if (!this.hiddenEl) {
257             return;
258         }
259         var ar = [];
260         var idField = this.combo.valueField;
261         
262         this.items.each(function(f) {
263             ar.push(f.data[idField]);
264            
265         });
266         this.hiddenEl.dom.value = ar.join(',');
267         this.validate();
268     },
269     
270     reset : function()
271     {
272         //Roo.form.ComboBoxArray.superclass.reset.call(this); 
273         this.items.each(function(f) {
274            f.remove(); 
275         });
276         this.el.dom.value = '';
277         if (this.hiddenEl) {
278             this.hiddenEl.dom.value = '';
279         }
280         
281     },
282     getValue: function()
283     {
284         return this.hiddenEl ? this.hiddenEl.dom.value : '';
285     },
286     setValue: function(v) // not a valid action - must use addItems..
287     {
288          
289         this.reset();
290         
291         
292         
293         if (this.store.isLocal && (typeof(v) == 'string')) {
294             // then we can use the store to find the values..
295             // comma seperated at present.. this needs to allow JSON based encoding..
296             this.hiddenEl.value  = v;
297             var v_ar = [];
298             Roo.each(v.split(','), function(k) {
299                 Roo.log("CHECK " + this.valueField + ',' + k);
300                 var li = this.store.query(this.valueField, k);
301                 if (!li.length) {
302                     return;
303                 }
304                 var add = {};
305                 add[this.valueField] = k;
306                 add[this.displayField] = li.item(0).data[this.displayField];
307                 
308                 this.addItem(add);
309             }, this) 
310              
311         }
312         if (typeof(v) == 'object' ) {
313             // then let's assume it's an array of objects..
314             Roo.each(v, function(l) {
315                 this.addItem(l);
316             }, this);
317              
318         }
319         
320         
321     },
322     setFromData: function(v)
323     {
324         // this recieves an object, if setValues is called.
325         this.reset();
326         this.el.dom.value = v[this.displayField];
327         this.hiddenEl.dom.value = v[this.valueField];
328         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
329             return;
330         }
331         var kv = v[this.valueField];
332         var dv = v[this.displayField];
333         kv = typeof(kv) != 'string' ? '' : kv;
334         dv = typeof(dv) != 'string' ? '' : dv;
335         
336         
337         var keys = kv.split(',');
338         var display = dv.split(',');
339         for (var i = 0 ; i < keys.length; i++) {
340             
341             add = {};
342             add[this.valueField] = keys[i];
343             add[this.displayField] = display[i];
344             this.addItem(add);
345         }
346       
347         
348     },
349     
350     /**
351      * Validates the combox array value
352      * @return {Boolean} True if the value is valid, else false
353      */
354     validate : function(){
355         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
356             this.clearInvalid();
357             return true;
358         }
359         return false;
360     },
361     
362     validateValue : function(value){
363         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
364         
365     },
366     
367     /*@
368      * overide
369      * 
370      */
371     isDirty : function() {
372         if(this.disabled) {
373             return false;
374         }
375         
376         try {
377             var d = Roo.decode(String(this.originalValue));
378         } catch (e) {
379             return String(this.getValue()) !== String(this.originalValue);
380         }
381         
382         var originalValue = [];
383         
384         for (var i = 0; i < d.length; i++){
385             originalValue.push(d[i][this.valueField]);
386         }
387         
388         return String(this.getValue()) !== String(originalValue.join(','));
389         
390     }
391     
392 });
393
394
395
396 /**
397  * @class Roo.form.ComboBoxArray.Item
398  * @extends Roo.BoxComponent
399  * A selected item in the list
400  *  Fred [x]  Brian [x]  [Pick another |v]
401  * 
402  * @constructor
403  * Create a new item.
404  * @param {Object} config Configuration options
405  */
406  
407 Roo.form.ComboBoxArray.Item = function(config) {
408     config.id = Roo.id();
409     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
410 }
411
412 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
413     data : {},
414     cb: false,
415     displayField : false,
416     tipField : false,
417     
418     
419     defaultAutoCreate : {
420         tag: 'div',
421         cls: 'x-cbarray-item',
422         cn : [ 
423             { tag: 'div' },
424             {
425                 tag: 'img',
426                 width:16,
427                 height : 16,
428                 src : Roo.BLANK_IMAGE_URL ,
429                 align: 'center'
430             }
431         ]
432         
433     },
434     
435  
436     onRender : function(ct, position)
437     {
438         Roo.form.Field.superclass.onRender.call(this, ct, position);
439         
440         if(!this.el){
441             var cfg = this.getAutoCreate();
442             this.el = ct.createChild(cfg, position);
443         }
444         
445         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
446         
447         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
448             this.cb.renderer(this.data) :
449             String.format('{0}',this.data[this.displayField]);
450         
451             
452         this.el.child('div').dom.setAttribute('qtip',
453                         String.format('{0}',this.data[this.tipField])
454         );
455         
456         this.el.child('img').on('click', this.remove, this);
457         
458     },
459    
460     remove : function()
461     {
462         if(this.cb.disabled){
463             return;
464         }
465         this.cb.items.remove(this);
466         this.el.child('img').un('click', this.remove, this);
467         this.el.remove();
468         this.cb.updateHiddenEl();
469         
470         this.cb.fireEvent('remove', this.cb, this);
471     }
472 });