Hi !
In the longpress event, I'm trying to apply a Panel's baseCls at runtime. Like this :
Since it doesn't work, can anyone explain me how to do this ?Code:var bio = Ext.getCmp('panelBio02');
if(Ext.is.Tablet || Ext.is.Desktop) {
bio.setBaseCls = 'PanelBio';
}else{
bio.setBaseCls = 'PanelBioPhone';
}
