left // right
Tnx !
tools:[{
id:'left',
qtip:this.Colapsar,
scope:this,
handler:function(event, toolEl, panel, tc){
panel.getEl().stopFx().shift({
x:-166,
easing:'easeOut',
duration:.35
});
toolEl.dom.qtip = this.Expandir;
toolEl.hide();
panel.tools.right.show();
}
},{
id:'right',
qtip:this.Expandir,
scope:this,
hidden:true,
handler:function(event, toolEl, panel, tc){
panel.getEl().stopFx().shift({
x: 20,
easing: 'easeOut',
duration: .35
});
toolEl.dom.qtip = this.Colapsar;
toolEl.hide();
panel.tools.left.show();
}
}]