<div id="p" style="padding:10px;">
<p>panel content.</p><p>panel content.</p>
</div>
$('#p').panel({
width:500,
height:150,
title: 'My Panel',
tools: [
{
iconCls:'icon-add',
handler:function(){alert('new')}
},
{
iconCls:'icon-save',
handler:function(){alert('save')}
}
]
});