add({
title: args.node.id,
iconCls: 'tabs',
items: [{html: '<code class="prettyprint"><?php\necho \'Hello World!\';</code>', width: '100%', hieght: '100%', plain: true}],
closable: true
}).show();
I am running the above method on Ext.TabPanel and it is returning '' as the html...
If I do
<code class="prettyprint"><html><head><title>Whatever</title></head><body.The body!</body></html></code>
It just renders The body!
... how can I get it to display the source code??
Many thanks...