examples/view/xtemplate.html
authorAlan Knowles <alan@akbkhome.com>
Sat, 7 Apr 2012 06:30:17 +0000 (14:30 +0800)
committerAlan Knowles <alan@akbkhome.com>
Sat, 7 Apr 2012 06:30:17 +0000 (14:30 +0800)
examples/view/xtemplate.html

index 6cc7185..d14729b 100644 (file)
 Roo.onReady(function() {
     
     var tpl = new Roo.XTemplate({
-       html : '<li>{pa.format:("Y-m-d")}</li>' 
+       html : '<tpl for="parray"><li>{pa.format:("Y-m-d")}</li></tpl>' 
         
     });
     
-    tpl.append(Roo.get('body'),
-        [ 
+    tpl.append(Roo.get('body'),
+        parray : 
             {
                 pa : new Date() 
             },
@@ -26,7 +26,7 @@ Roo.onReady(function() {
                 pa : new Date() 
             }
         ]
-    );
+    });
      
 });