Roo/form/ComboNested.js
[roojs1] / Roo / form / ComboNested.js
1 /*
2  * RooJS Library 1.1.1
3  * Copyright(c) 2008-2011  Alan Knowles
4  *
5  * License - LGPL
6  */
7  
8
9 /**
10  * @class Roo.form.ComboNested
11  * @extends Roo.form.ComboBox
12  * A combobox for that allows selection of nested items in a list,
13  * eg.
14  *
15  *  Book
16  *    -> red
17  *    -> green
18  *  Table
19  *    -> square
20  *      ->red
21  *      ->green
22  *    -> rectangle
23  *      ->green
24  *      
25  * 
26  * @constructor
27  * Create a new ComboNested
28  * @param {Object} config Configuration options
29  */
30 Roo.form.ComboNested = function(config){
31     Roo.form.ComboCheck.superclass.constructor.call(this, config);
32     // should verify some data...
33     // like
34     // hiddenName = required..
35     // displayField = required
36     // valudField == required
37     var req= [ 'hiddenName', 'displayField', 'valueField' ];
38     var _t = this;
39     Roo.each(req, function(e) {
40         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
41             throw "Roo.form.ComboNested : missing value for: " + e;
42         }
43     });
44      
45     
46 };
47
48 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
49    
50    
51     list : null, // the outermost div..
52     innerLists : null, // the
53     views : null,
54     stores : null,
55     // private
56     onRender : function(ct, position)
57     {
58         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
59         
60         if(this.hiddenName){
61             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
62                     'before', true);
63             this.hiddenField.value =
64                 this.hiddenValue !== undefined ? this.hiddenValue :
65                 this.value !== undefined ? this.value : '';
66
67             // prevent input submission
68             this.el.dom.removeAttribute('name');
69              
70              
71         }
72         
73         if(Roo.isGecko){
74             this.el.dom.setAttribute('autocomplete', 'off');
75         }
76
77         var cls = 'x-combo-list';
78
79         this.list = new Roo.Layer({
80             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
81         });
82
83         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
84         this.list.setWidth(lw);
85         this.list.swallowEvent('mousewheel');
86         this.assetHeight = 0;
87
88         if(this.title){
89             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
90             this.assetHeight += this.header.getHeight();
91         }
92         this.innerLists = [];
93         this.views = [];
94         this.stores = [];
95         for (var i =0 ; i < 3; i++) {
96             this.onRenderList( cls, i);
97         }
98         
99         if(this.allowBlank && !this.disableClear){
100             this.footer = this.list.createChild({cls:cls+'-ft'});
101             this.pageTb = new Roo.Toolbar(this.footer);  
102         }
103        
104         
105         if (this.pageTb && this.allowBlank && !this.disableClear) {
106             var _this = this;
107             this.pageTb.add(new Roo.Toolbar.Fill(), {
108                 cls: 'x-btn-icon x-btn-clear',
109                 text: '&#160;',
110                 handler: function()
111                 {
112                     _this.collapse();
113                     _this.clearValue();
114                     _this.onSelect(false, -1);
115                 }
116             });
117         }
118         if (this.footer) {
119             this.assetHeight += this.footer.getHeight();
120         }
121         
122     },
123     onRenderList : function (  cls, i)
124     {
125         
126         var lw = Math.floor(
127                 ((this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / 3
128         );
129         
130         this.list.setWidth(lw); // default to '1'
131
132         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
133         //il.on('mouseover', this.onViewOver, this, { list:  i });
134         //il.on('mousemove', this.onViewMove, this, { list:  i });
135         il.setWidth(lw);
136         il.setStyle({ 'overflow-x' : 'hidden'});
137
138         if(!this.tpl){
139             this.tpl = '<div class="'+cls+'-item '+cls+'-item-{has_cn}">{' + this.displayField + '}</div>';
140         }
141         
142         var store  = this.store;
143         if (i > 0) {
144             store  = new Roo.data.SimpleStore({
145                 reader : this.store.reader,
146                 data : [ ]
147             });
148         }
149         this.stores[i]  = store;
150                 
151         
152         
153         var view = this.views[i] = new Roo.View(
154             il,
155             this.tpl,
156             {
157                 singleSelect:true,
158                 store: store,
159                 selectedClass: this.selectedClass
160             }
161         );
162         view.getEl().setWidth(lw);
163         view.getEl().setStyle({
164             position: i < 1 ? 'relative' : 'absolute',
165             top: 0,
166             left: (i * lw ) + 'px',
167             display : i > 0 ? 'none' : 'block'
168         });
169         view.on('selectionchange', this.onSelectChange, this, {list : i });
170         
171         //view.on('click', this.onViewClick, this, { list : i });
172
173         store.on('beforeload', this.onBeforeLoad, this);
174         store.on('load',  this.onStoreLoad, this, { list  : i});
175         store.on('loadexception', this.onLoadException, this);
176
177         // hide the other vies..
178         
179         
180         
181     },
182     onResize : function()  {},
183     
184     restrictHeight : function()
185     {
186         var mh = 0;
187         Roo.each(this.innerLists, function(il,i) {
188             var el = this.views[i].getEl();
189             el.dom.style.height = '';
190             var inner = el.dom;
191             var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
192             // only adjust heights on other ones..
193             if (i < 1) {
194                 
195                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
196                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
197                 mh = Math.max(el.getHeight(), mh);
198             }
199             
200             
201         }, this);
202         
203         this.list.beginUpdate();
204         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
205         this.list.alignTo(this.el, this.listAlign);
206         this.list.endUpdate();
207         
208     },
209      
210     
211     // -- store handlers..
212     
213     // private
214     onLoad : function(a,b,c,d)
215     {
216         
217         if(!this.hasFocus){
218             return;
219         }
220         
221         if(this.store.getCount() > 0) {
222             this.expand();
223             this.restrictHeight();   
224         } else {
225             this.onEmptyResults();
226         }
227         /*
228         this.stores[1].loadData([]);
229         this.stores[2].loadData([]);
230         this.views
231         */    
232     
233         //this.el.focus();
234     },
235     onStoreLoad : function ()
236     {
237         Roo.log(arguments);
238     },
239     
240     // private
241     onLoadException : function()
242     {
243         this.collapse();
244         Roo.log(this.store.reader.jsonData);
245         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
246             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
247         }
248         
249         
250     } ,
251      
252      
253
254     onSelectChange : function (view, sels, opts )
255     {
256         var ix = view.getSelectedIndexes();
257         if (!ix.length|| opts.list > 2) {
258             this.stores[opts.list+1].loadData( [] );
259             return;
260         }
261         
262         Roo.log(ix);
263         var rec = view.store.getAt(ix[0]);
264         Roo.log(rec);
265         
266         var lw = Math.floor(
267                 ((this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / 3
268         );
269         
270         this.stores[opts.list+1].loadData( typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn);
271         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
272         this.views[opts.list+1].getEl().setStyle({ display : rec.data.cn.length ? 'block' : 'none' });
273         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
274         this.list.setWidth(lw * (opts.list + (rec.data.cn.length ? 2 : 1))); 
275     }
276     
277     
278 });