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? Simple addStyleName() or setPrimaryStyleName does not work. Have somebody tried it?setBase Style also.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
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);