function add(){
$('#add').panel({
width:500,
height:150,
title:'My Panel',
closable:true,
tools:[{
iconCls:'icon-remove',
handler:function(){}
},{
iconCls:'icon-save',
handler:function(){alert('save')}
}]
});
}
定义了一个按钮,点击就会打开面板,面板设定有关闭功能,但是关闭后在点按钮却打不开,求大神解救,谢谢