设置中的颜色来自支持豆

发布于 2024-12-18 04:28:37 字数 422 浏览 2 评论 0原文

有什么办法可以设置jsf中表数据中文本的颜色吗?我希望根据支持 bean 方法的返回值为 #{_component.displayName} 设置不同的颜色。

    <h:dataTable styleClass="mytable" value="#{cart.items}" var="_component"> 

        <h:column>
            <f:facet name="header"><h3>Item</h3></f:facet>
            #{_component.displayName}
        </h:column>

    </h:dataTable>  

谢谢

is there any way i can set the color of the text in the table data in jsf? i want to have different colors for #{_component.displayName} depending on the return value of a backing bean method.

    <h:dataTable styleClass="mytable" value="#{cart.items}" var="_component"> 

        <h:column>
            <f:facet name="header"><h3>Item</h3></f:facet>
            #{_component.displayName}
        </h:column>

    </h:dataTable>  

Thank you

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

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

发布评论

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

评论(1

池予 2024-12-25 04:28:37

如果要在 元素上设置样式类,则必须使用 columnClasses 属性code>:

<h:dataTable columnClasses="col1,col2,col3">

它接受以逗号分隔的 CSS 类名称字符串,这些名称将按顺序应用于各个列。您甚至可以让它引用自动填充所需字符串的 bean 属性:

<h:dataTable columnClasses="#{bean.columnClasses}">

但是,每个样式类都将应用于整个列。如果您想独立地设置单个单元格的样式,最好将其包装在 中:

<h:outputText value="#{_component.displayName}" styleClass="#{_component.styleClass}" />

<h:outputText value="#{_component.displayName}" styleClass="#{bean.styleClass}" />

或者

<h:outputText value="#{_component.displayName}" styleClass="#{bean.styleClass(component)}" />

或者,如果单元格覆盖多个组件,请将它们包装在 < code>并在其上设置 styleClass

If you want to set the style class on the <td> element, you've to use columnClasses attribute of the <h:dataTable>:

<h:dataTable columnClasses="col1,col2,col3">

It accepts a commaseparated string of CSS class names which are to be applied on the individual columns in sequence. You can even let it refer to a bean property which autopopulates the desired string:

<h:dataTable columnClasses="#{bean.columnClasses}">

Each styleclass will however be applied on the entire column. If you'd like to style an individual cell independently, you'd better to wrap it in an <h:outputText>:

<h:outputText value="#{_component.displayName}" styleClass="#{_component.styleClass}" />

or

<h:outputText value="#{_component.displayName}" styleClass="#{bean.styleClass}" />

or

<h:outputText value="#{_component.displayName}" styleClass="#{bean.styleClass(component)}" />

Or if the cell covers multiple components, wrap them inside a <h:panelGroup> instead and set the styleClass on it.

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