i have titlewindow named id_GrgPanel and have style name "SelecetedPanel" ... i have some event listener where i change the style of this title window.. like...
if(param==true)
{
this.styleName="SelecetedPanel";
}
else
{
this.styleName="Panel";
}
Styles are properly defined. but when else is executed the titlewindow stylename changes but no visual effect shown.. like borderskin... what could be the reason ?