Fixed timing error with editor box list
authorLinda Nichols <lynnaloo@gmail.com>
Tue, 24 Jun 2014 04:07:17 +0000 (04:07 +0000)
committerLinda Nichols <lynnaloo@gmail.com>
Tue, 24 Jun 2014 04:07:17 +0000 (04:07 +0000)
lib/enyo-x/source/views/list_relations_editor_box.js

index ff25837..f04a7a7 100644 (file)
@@ -99,7 +99,9 @@ trailing:true, white:true, strict: false*/
     */
     controlValueChanged: function () {
       // this is getting called before the list is created
-      //this.$.list.refresh();
+      if (this.$.list) {
+        this.$.list.refresh();
+      }
       return true;
     },
     /**