Roo/form/ComboNested.js
[roojs1] / Roo / form / ComboNested.js
index 54e0056..c0d7ed8 100644 (file)
@@ -47,6 +47,11 @@ Roo.form.ComboNested = function(config){
 
 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
    
+    /*
+     * @config {Number} max Number of columns to show
+     */
+    
+    maxColumns : 3,
    
     list : null, // the outermost div..
     innerLists : null, // the
@@ -92,18 +97,25 @@ Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
         this.innerLists = [];
         this.views = [];
         this.stores = [];
-        for (var i =0 ; i < 3; i++) {
+        for (var i =0 ; i < this.maxColumns; i++) {
             this.onRenderList( cls, i);
         }
         
-        if(this.allowBlank && !this.disableClear){
-            this.footer = this.list.createChild({cls:cls+'-ft'});
-            this.pageTb = new Roo.Toolbar(this.footer);  
-        }
-       
+        // always needs footer, as we are going to have an 'OK' button.
+        this.footer = this.list.createChild({cls:cls+'-ft'});
+        this.pageTb = new Roo.Toolbar(this.footer);  
+        var _this = this;
+        this.pageTb.add(  {
+            
+            text: 'Done',
+            handler: function()
+            {
+                _this.collapse();
+            }
+        });
         
-        if (this.pageTb && this.allowBlank && !this.disableClear) {
-            var _this = this;
+        if ( this.allowBlank && !this.disableClear) {
+            
             this.pageTb.add(new Roo.Toolbar.Fill(), {
                 cls: 'x-btn-icon x-btn-clear',
                 text: '&#160;',
@@ -124,22 +136,32 @@ Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
     {
         
         var lw = Math.floor(
-                ((this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / 3
-            );;
+                ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
+        );
+        
+        this.list.setWidth(lw); // default to '1'
 
         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
         //il.on('mouseover', this.onViewOver, this, { list:  i });
         //il.on('mousemove', this.onViewMove, this, { list:  i });
         il.setWidth(lw);
-         
+        il.setStyle({ 'overflow-x' : 'hidden'});
 
         if(!this.tpl){
-            this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
+            this.tpl = new Roo.Template({
+                html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
+                isEmpty: function (value, allValues) {
+                    //Roo.log(value);
+                    var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
+                    return dl ? 'has-children' : 'no-children'
+                }
+            });
         }
         
         var store  = this.store;
         if (i > 0) {
             store  = new Roo.data.SimpleStore({
+                //fields : this.store.reader.meta.fields,
                 reader : this.store.reader,
                 data : [ ]
             });
@@ -158,20 +180,21 @@ Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
             }
         );
         view.getEl().setWidth(lw);
-        view.getEl().css({
+        view.getEl().setStyle({
             position: i < 1 ? 'relative' : 'absolute',
             top: 0,
-            left: i * lw            
+            left: (i * lw ) + 'px',
+            display : i > 0 ? 'none' : 'block'
         });
-        view.on('selectionchange', this.onSelectChange, this);
-        
+        view.on('selectionchange', this.onSelectChange, this, {list : i });
+        view.on('dblclick', this.onDoubleClick, this, {list : i });
         //view.on('click', this.onViewClick, this, { list : i });
 
         store.on('beforeload', this.onBeforeLoad, this);
-        store.on('load', this.onLoad, this);
+        store.on('load',  this.onLoad, this, { list  : i});
         store.on('loadexception', this.onLoadException, this);
 
-          
+        // hide the other vies..
         
         
         
@@ -186,9 +209,15 @@ Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
             el.dom.style.height = '';
             var inner = el.dom;
             var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
-            el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
-            il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
-            mh = Math.max(el.getHeight(), mh);
+            // only adjust heights on other ones..
+            if (i < 1) {
+                
+                el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
+                il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
+                mh = Math.max(el.getHeight(), mh);
+            }
+            
+            
         }, this);
         
         this.list.beginUpdate();
@@ -200,11 +229,21 @@ Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
      
     
     // -- store handlers..
-    
+    // private
+    onBeforeLoad : function()
+    {
+        if(!this.hasFocus){
+            return;
+        }
+        this.innerLists[0].update(this.loadingText ?
+               '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
+        this.restrictHeight();
+        this.selectedIndex = -1;
+    },
     // private
     onLoad : function(a,b,c,d)
     {
-         
+        
         if(!this.hasFocus){
             return;
         }
@@ -215,8 +254,16 @@ Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
         } else {
             this.onEmptyResults();
         }
+        /*
+        this.stores[1].loadData([]);
+        this.stores[2].loadData([]);
+        this.views
+        */    
+    
         //this.el.focus();
     },
+    
+    
     // private
     onLoadException : function()
     {
@@ -231,12 +278,82 @@ Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
      
      
 
-    onSelectChange : function (view) {
+    onSelectChange : function (view, sels, opts )
+    {
         var ix = view.getSelectedIndexes();
-        Roo.log(ix);
-        var rec = view.store.getAt(ix);
-        Roo.log(rec);
+        
+        
+        if (opts.list > this.maxColumns - 2) {
+             
+            this.setFromData(ix.length ? view.store.getAt(ix[0]).data : {});
+            return;
+        }
+        
+        if (!ix.length) {
+            this.setFromData({});
+            var str = this.stores[opts.list+1];
+            str.loadData( str.reader.readerType == 'json' ? { data : [] } : [] );
+            return;
+        }
+        
+        var rec = view.store.getAt(ix[0]);
+        this.setFromData(rec.data);
+        
+        var lw = Math.floor(
+                ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
+        );
+        var data =  typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
+        var dl = typeof(data.data) != 'undefined' ? data.total : data.length; ///json is a nested response..
+        this.stores[opts.list+1].loadData( data );
+        this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
+        this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
+        this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
+        this.list.setWidth(lw * (opts.list + (dl ? 2 : 1))); 
+    },
+    onDoubleClick : function()
+    {
+        this.collapse(); //??
+    },
+    
+     
+    
+    findRecord : function (prop,value)
+    {
+        return this.findRecordInStore(this.store, prop,value);
+    },
+    
+     // private
+    findRecordInStore : function(store, prop, value)
+    {
+        var cstore = new Roo.data.SimpleStore({
+            //fields : this.store.reader.meta.fields, // we need array reader.. for
+            reader : this.store.reader,
+            data : [ ]
+        });
+        var _this = this;
+        var record  = false;
+        if(store.getCount() > 0){
+           store.each(function(r){
+                if(r.data[prop] == value){
+                    record = r;
+                    return false;
+                }
+                if (r.data.cn && r.data.cn.length) {
+                    cstore.loadData( r.data.cn);
+                    var cret = _this.findRecordInStore(cstore, prop, value);
+                    if (cret !== false) {
+                        record = cret;
+                        return false;
+                    }
+                }
+                
+                return true;
+            });
+        }
+        return record;
     }
     
     
+    
+    
 });
\ No newline at end of file