c30a5f3ad3858253fa81b8a3893784554488ea33
[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         // always needs footer, as we are going to have an 'OK' button.
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 = new Roo.Template({
140                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
141                 isEmpty: function (value, allValues) {
142                     return value.length ? 'has-children' : 'no-children'
143                 }
144             });
145         }
146         
147         var store  = this.store;
148         if (i > 0) {
149             store  = new Roo.data.SimpleStore({
150                 reader : this.store.reader,
151                 data : [ ]
152             });
153         }
154         this.stores[i]  = store;
155                 
156         
157         
158         var view = this.views[i] = new Roo.View(
159             il,
160             this.tpl,
161             {
162                 singleSelect:true,
163                 store: store,
164                 selectedClass: this.selectedClass
165             }
166         );
167         view.getEl().setWidth(lw);
168         view.getEl().setStyle({
169             position: i < 1 ? 'relative' : 'absolute',
170             top: 0,
171             left: (i * lw ) + 'px',
172             display : i > 0 ? 'none' : 'block'
173         });
174         view.on('selectionchange', this.onSelectChange, this, {list : i });
175         view.on('dblclick', this.onDoubleClick, this, {list : i });
176         //view.on('click', this.onViewClick, this, { list : i });
177
178         store.on('beforeload', this.onBeforeLoad, this);
179         store.on('load',  this.onStoreLoad, this, { list  : i});
180         store.on('loadexception', this.onLoadException, this);
181
182         // hide the other vies..
183         
184         
185         
186     },
187     onResize : function()  {},
188     
189     restrictHeight : function()
190     {
191         var mh = 0;
192         Roo.each(this.innerLists, function(il,i) {
193             var el = this.views[i].getEl();
194             el.dom.style.height = '';
195             var inner = el.dom;
196             var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
197             // only adjust heights on other ones..
198             if (i < 1) {
199                 
200                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
201                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
202                 mh = Math.max(el.getHeight(), mh);
203             }
204             
205             
206         }, this);
207         
208         this.list.beginUpdate();
209         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
210         this.list.alignTo(this.el, this.listAlign);
211         this.list.endUpdate();
212         
213     },
214      
215     
216     // -- store handlers..
217     
218     // private
219     onLoad : function(a,b,c,d)
220     {
221         
222         if(!this.hasFocus){
223             return;
224         }
225         
226         if(this.store.getCount() > 0) {
227             this.expand();
228             this.restrictHeight();   
229         } else {
230             this.onEmptyResults();
231         }
232         /*
233         this.stores[1].loadData([]);
234         this.stores[2].loadData([]);
235         this.views
236         */    
237     
238         //this.el.focus();
239     },
240     onStoreLoad : function ()
241     {
242         Roo.log(arguments);
243     },
244     
245     // private
246     onLoadException : function()
247     {
248         this.collapse();
249         Roo.log(this.store.reader.jsonData);
250         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
251             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
252         }
253         
254         
255     } ,
256      
257      
258
259     onSelectChange : function (view, sels, opts )
260     {
261         var ix = view.getSelectedIndexes();
262         
263         
264         if (opts.list > 1) {
265              
266             this.setFromData(ix.length ? view.store.getAt(ix[0]).data : {});
267             return;
268         }
269         
270         if (!ix.length) {
271             this.setFromData({});
272             this.stores[opts.list+1].loadData( [] );
273             return;
274         }
275         
276         var rec = view.store.getAt(ix[0]);
277         this.setFromData(rec.data)
278         
279         var lw = Math.floor(
280                 ((this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / 3
281         );
282         
283         this.stores[opts.list+1].loadData( typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn);
284         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
285         this.views[opts.list+1].getEl().setStyle({ display : rec.data.cn.length ? 'block' : 'none' });
286         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
287         this.list.setWidth(lw * (opts.list + (rec.data.cn.length ? 2 : 1))); 
288     },
289     onDoubleClick : function()
290     {
291         this.collapse(); //??
292     }
293     
294     
295 });