Roo/form/Field.js
authorAlan Knowles <alan@akbkhome.com>
Mon, 14 Nov 2011 09:40:31 +0000 (17:40 +0800)
committerAlan Knowles <alan@akbkhome.com>
Mon, 14 Nov 2011 09:40:31 +0000 (17:40 +0800)
Roo/form/Field.js

index d9f5cd4..24cec6d 100644 (file)
@@ -483,7 +483,7 @@ side          Add an error icon to the right of the field with a popup on hover
         this.value = v;
         if(this.rendered){
             this.el.dom.value = (v === null || v === undefined ? '' : v);
-            this.shadowNameEl ? (this.shadowNameEl.dom.value = this.el.dom.value) : false;
+            this.shadowNameEl ? (this.shadowNameEl.value = this.el.dom.value) : false;
             this.validate();
         }
     },