UiBinder FlexTable 风格

发布于 2024-08-23 13:00:31 字数 669 浏览 11 评论 0原文

我想向不同的行添加不同的样式,哪个是最好的方法?

我正在尝试这个(它不起作用,没有错误,但没有变化):

  • 两个接口:

公共接口StatisticsTableResources扩展ClientBundle {

public static final StatiscticsTableResources INSTANCE = GWT.create(StatiscticsTableResources.class);

@Source("StatisticsTableCss.css")
StatisticsTableCss css();

}

公共接口StatisticsTableCss扩展CssResource {

String tableOddRow();

}

  • CSS

.tableOddRow { 背景颜色:#aeaaa2; 颜色: 蓝色; 应用

  • 样式

ftStatistics.getRowFormatter().addStyleName(i, StatisticsTableResources.INSTANCE.css().tableOddRow());

I want to add different styles to different rows, Which is the best way?

I'm trying this (it doesnt works, no error but no changes):

  • TWO INTERFACES:

public interface StatiscticsTableResources extends ClientBundle {

public static final StatiscticsTableResources INSTANCE = GWT.create(StatiscticsTableResources.class);

@Source("StatisticsTableCss.css")
StatisticsTableCss css();

}

public interface StatisticsTableCss extends CssResource {

String tableOddRow();

}

  • THE CSS

.tableOddRow {
background-color: #aeaaa2;
color: blue;
}

  • APLLYING THE STYLE

ftStatistics.getRowFormatter().addStyleName(i, StatiscticsTableResources.INSTANCE.css().tableOddRow());

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

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

发布评论

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

评论(1

南街女流氓 2024-08-30 13:00:31

大胆猜测,您忘记注入样式表了。在类顶部应用样式的位置添加以下行:

static { StatisticsTableResources.INSTANCE.css().ensureInjected(); }

Wild guess, you've forgotten to inject the style sheet. Somewhere at the top of the class where you apply the style, add this line:

static { StatisticsTableResources.INSTANCE.css().ensureInjected(); }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文