smartgwt按钮无法覆盖skin_styles.css

发布于 2025-01-03 14:03:12 字数 174 浏览 0 评论 0原文

我想在 smartgwt 中为 ibutton 的 titleStyle 添加红色背景和白色。我无法覆盖 Skin_styles.css。如何覆盖smartgwt中按钮的skin_styles?简单的 addStyleName() 或 setPrimaryStyleName 不起作用。有人尝试过吗?setBase Style 也有。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

离笑几人歌 2025-01-10 14:03:12

看来您在皮肤和样式方面存在问题,如果您想向小部件添加样式(您之前的帖子),您可以使用某种代码:

    String newStyle;
    String actualStyle= o.getStyleName();
    if(actualStyle!= null){
         newStyle= actualStyle+ " " + styleNameYouWant;
    }else{
        newStyle= styleNameYouWant;
    }
    o.setStyleName(newStyle);       

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);       
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文