I want to add red background and white color for titleStyle for ibutton in smartgwt. I cannot override skin_styles.css. How to override skin_styles for button in smartgwt? Simpl
It seems you have issues with skinning and style, If you want to add a style to a widget(your previous post) you can use some sort of code:
String newStyle;
String actualStyle= o.getStyleName();
if(actualStyle!= null){
newStyle= actualStyle+ " " + styleNameYouWant;
}else{
newStyle= styleNameYouWant;
}
o.setStyleName(newStyle);