我可以使用 class="xyz" 添加样式吗到 GWT CellList 渲染?

发布于 2024-12-05 07:51:46 字数 326 浏览 2 评论 0 原文

如果我

sb.appendHtmlConstant("<div class=\"" + CELL_RESOURCES.style().title() + "\">");

在 CellList 渲染方法中执行此操作,那么我生成的 HTML 最终看起来像这样

<div class="title">Wow!</div>

,但生成的 CSS 不包含“标题”类/选择器,因此不会应用 CSS。

有没有办法将 CSS 样式应用于 CellList 渲染的部分?

If I do this

sb.appendHtmlConstant("<div class=\"" + CELL_RESOURCES.style().title() + "\">");

in the CellList render method then my generated HTML ends up looking like

<div class="title">Wow!</div>

but the CSS that is generated does not include the "title" class/selector and so no CSS gets applied.

Is there a way of applying CSS styling to parts of the CellList rendering?

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

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

发布评论

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

评论(1

海未深 2024-12-12 07:51:46

您是否在代码中的某个位置调用了 CELL_RESOURCES.style().ensureInjected(); (最好尽快在启动代码中调用)?确保CSS确实被注入?

Did you call CELL_RESOURCES.style().ensureInjected(); somewhere in your code (preferable as soon as possible in you startup code)? to make sure the css is actually injected?

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