Roo/form/ComboBoxArray.js
[roojs1] / Roo / form / ComboBoxArray.js
index ff0af6b..c4b59a4 100644 (file)
@@ -175,6 +175,7 @@ Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
         
         
         this.combo.on('select', function(cb, rec, ix) {
+            Roo.log([cb, rec, ix]);
             this.addItem(rec.data);
             
             cb.setValue('');
@@ -230,7 +231,9 @@ Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
         var valueField = this.combo.valueField;
         var displayField = this.combo.displayField;
         if (this.items.indexOfKey(rec[valueField]) > -1) {
-            //console.log("GOT " + rec.data.id);
+            Roo.log("GOT Record");
+            Roo.log(this.items);
+            Roo.log(rec);
             return;
         }
         
@@ -308,7 +311,7 @@ Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
             }, this) 
              
         }
-        if (typeof(v) == 'object') {
+        if (typeof(v) == 'object' ) {
             // then let's assume it's an array of objects..
             Roo.each(v, function(l) {
                 this.addItem(l);
@@ -458,6 +461,9 @@ Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
    
     remove : function()
     {
+        if(this.cb.disabled){
+            return;
+        }
         this.cb.items.remove(this);
         this.el.child('img').un('click', this.remove, this);
         this.el.remove();