Ext.require('widget.panel'); Ext.onReady(function(){ var data = { name: 'Abe Elias', company: 'Sencha Inc', address: '525 University Ave', city: 'Palo Alto', state: 'California', zip: '44102', kids: [{ name: 'Solomon', age:3 },{ name: 'Rebecca', age:2 },{ name: 'Rebecca 1', age:0 }] }; Ext.create('Ext.Panel', { width: 300, renderTo: 'template-example', style: "margin:15px", bodyStyle: "padding:5px;font-size:11px;", title: 'Basic Template', tbar: [{ text: 'Apply Template', listeners: { click: function() { var panel = this.up("panel"), tpl = Ext.create('Ext.Template', '
Name: {name}
', 'Company: {company}
', 'Location: {city}, {state}
' ); tpl.overwrite(panel.body, data); panel.doComponentLayout(); } } }], html: 'Apply the template to see results here
' }); Ext.create('Ext.Panel', { width: 300, renderTo: 'xtemplate-example', style: "margin:15px", bodyStyle: "padding:5px;font-size:11px;", title: 'XTemplate', tbar: [{ text: 'Apply Template', listeners: { click: function() { var panel = this.up('panel'), tpl =Ext.create('Ext.XTemplate', 'Name: {name}
', 'Company: {company}
', 'Location: {city}, {state}
', 'Kids: ',
' {#}. {parent.name}\'s kid - {name}
Apply the template to see results here
' }); });