Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.39 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Ext.onReady(function(){
  2.     var data = [{
  3.         color: 0,
  4.         label: 'Red'    
  5.     },{
  6.         color: 1,
  7.         label: 'Blue'
  8.     }];
  9.    
  10.     var tpl = new Ext.XTemplate([
  11.         '<ul>',
  12.         '<tpl for=".">',
  13.             '<li id="x{#}">',
  14.                 '{label}',
  15.             '</li>',
  16.         '</tpl>',
  17.         '</ul>'
  18.     ]);
  19.     tpl.overwrite(document.body, data);
  20. });