builder.html.js
authorAlan Knowles <alan@akbkhome.com>
Sun, 8 Apr 2012 08:08:49 +0000 (16:08 +0800)
committerAlan Knowles <alan@akbkhome.com>
Sun, 8 Apr 2012 08:08:49 +0000 (16:08 +0800)
builder.html.js

index cebc6a5..2809f8e 100644 (file)
@@ -12,18 +12,19 @@ Builder  = {
     
     id : 1,
     
-    render : function(data, strname)
+    render : function(data, clsname)
     {
         // for debugging 
         // console.log(data);        return; 
         Roo.log(data);
+        Roo.log(data);
         // This would be alot simpler if we just use the XComponent code...
         // data should now be dialog or xcomponent..
         // only snag here is that we do not know the name currently..
          
         var  ix = '_src_' + this.id++;
         // should replace module name with Builder._src_{id}
-        data =  data.replace(strname, 'Builder.' + ix);
+        data =  data.replace(clsname, 'Builder.' + ix);
         // next.. we need to ensure that parent is set correctly..
         data  += "\n" + 'Builder.' + ix + ".parent = '#renderel';\n";