Roo/form/ComboNested.js
[roojs1] / Roo / form / ComboNested.js
index db50667..a88dc16 100644 (file)
@@ -281,7 +281,6 @@ Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
         var ix = view.getSelectedIndexes();
          
         if (opts.list > this.maxColumns - 2) {
-             
             this.setFromData(ix.length ? view.store.getAt(ix[0]).data : {});
             return;
         }
@@ -313,8 +312,7 @@ Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
         if (this.isLoading) {
             this.selectActive(opts.list);
         }
-        
-        
+         
     },
     onDoubleClick : function()
     {
@@ -342,51 +340,70 @@ Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
             return false;
         }
         store.each(function(r){
-             if(r.data[prop] == value){
-                 record = r;
-                 return false;
-             }
-             if (r.data.cn && r.data.cn.length) {
+            if(r.data[prop] == value){
+                record = r;
+                return false;
+            }
+            if (r.data.cn && r.data.cn.length) {
                 cstore.loadDataFromChildren( r);
                 var cret = _this.findRecordInStore(cstore, prop, value);
                 if (cret !== false) {
                     record = cret;
                     return false;
                 }
-             }
+            }
              
-             return true;
+            return true;
         });
         
         return record;
     },
     
-    
+    /*
+     * find the stack of stores that match our value.
+     *
+     * 
+     */
     
     selectActive : function (lvl)
     {
+        var cstore = new Roo.data.SimpleStore({
+            //fields : this.store.reader.meta.fields, // we need array reader.. for
+            reader : this.store.reader,
+            data : [ ]
+        });
         // just need to determine which of the current level is selected if any..
-        var value = this.getValue();
-        var prop = this.hiddenName;
+        
         var store = this.stores[lvl];
+        
+        
         if(store.getCount() < 1){
             return;
         }
+        var value = this.getValue();
+        var prop = this.hiddenName;
+        
+        var _this = this;
         store.each(function(r){
+            // selected is at this level
             if(r.data[prop] == value){
-                 record = r;
-                 return false;
+                var ix = store.getIndexOf(r);
+                _this.views[lvl].select(ix, false, true); // do not trigger set active..
+                _this.loading 
+                return false;
+            }
+            
+            if (r.data.cn && r.data.cn.length) {
+                cstore.loadDataFromChildren(r);
+                var cret = _this.findRecordInStore(cstore, prop, value);
+                if (cret !== false) {
+                    var ix = store.getIndexOf(r);
+                    _this.views[lvl].select(ix, false, false); // will trigger select change..
+                    return false;
+                }
             }
-             if (r.data.cn && r.data.cn.length) {
-                 cstore.loadDataFromChildren( r);
-                 var cret = _this.findRecordInStore(cstore, prop, value);
-                 if (cret !== false) {
-                     record = cret;
-                     return false;
-                 }
-             }
              
-             return true;
+            return true;
         });
         
     }