Skip to content

Instantly share code, notes, and snippets.

@nelstrom
Created December 22, 2010 20:10
Show Gist options
  • Save nelstrom/752027 to your computer and use it in GitHub Desktop.
Save nelstrom/752027 to your computer and use it in GitHub Desktop.
Ext.setup({
onReady: function() {
var data = [{
name: 'Joshua',
age:3
},{
name: 'Matthew',
age:2
},{
name: 'Solomon',
age:0
}
];
var content = new Ext.Panel({
tpl: Ext.XTemplate.from(Ext.get("kids-list"))
});
new Ext.Panel({
fullscreen: true,
items: [content]
});
content.update(data);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment