Here's the code
var tp = new Ext.tree.TreePanel(....);
tp.title = 'title ...'; // blows up without title
var accordian = new Ext.Panel({
layout: 'accordian',
region: 'west',
items: [
tp, // tree panel passed here
{
title:'another panel',
html: 'content here..'
}
]
.....
});
No comments:
Post a Comment