p:selectManyCheckbox或其他p:selectMany */One *的Primefaces工具提示 [英] Primefaces tooltip for p:selectManyCheckbox or other p:selectMany*/One*

查看:53
本文介绍了p:selectManyCheckbox或其他p:selectMany */One *的Primefaces工具提示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想为p:selectManyCheckBox中的每个元素添加一个工具提示.但是我无法提出解决方案.

I would like to add a tooltip for each element in a p:selectManyCheckBox. However I can't come up with a solution.

我有一个类Role,它具有3个属性,即"id"(长整数),"name"(字符串)和"description"(字符串).显示名称,我希望将其描述作为工具提示.

I've got a class Role that has 3 properties, "id" (Long), "name" (String) and "description" (String). The name is displayed and I would like to have the description as a tooltip.

这是一段有效的代码:

<p:selectManyCheckbox layout="pageDirection" value="#{roleBean.selectedRoles}" converter="roleConverter">
    <f:selectItems value="#{roleBean.roles}" var="role" itemLabel="#{role.name}" itemValue="#{role}"/>
</p:selectManyCheckbox>

roleConverterFacesConverter,可将Role转换为ID,反之亦然.

The roleConverter is a FacesConverter that converts the Role to an id and visa versa.

我想到了这个

<p:selectManyCheckbox layout="pageDirection" value="#{roleBean.selectedRoles}" converter="roleConverter">
    <c:forEach var="role" items="#{roleBean.roles}">
        <f:selectItem id="role#{role.id}" itemLabel="#{role.name}" itemValue="#{role}" />
        <p:tooltip for="role#{role.id}" value="#{role.description}"/>
    </c:forEach>
</p:selectManyCheckbox>

但不幸的是,它不起作用.

But unfortunately it doesn't work.

推荐答案

您可以使用

You can achieve this by using the SelectItem#getDescription() property as below:

<p:selectManyCheckbox layout="pageDirection"
    value="#{roleBean.selectedRoles}" converter="roleConverter">
    <f:selectItems value="#{roleBean.roles}" var="role" 
        itemValue="#{role}" itemLabel="#{role.name}" 
        itemDescription="#{role.description}" />
</p:selectManyCheckbox>

自PrimeFaces 6.2(实际上是因为您正在阅读的答案,<).

This is supported since PrimeFaces 6.2 (actually because of this very answer you're reading now).

如果您尚未使用PrimeFaces 6.2且由于某种原因无法升级,则需要如下手动覆盖PrimeFaces SelectManyCheckboxRenderer#encodeOptionLabel(),以便识别并渲染它:

In case you're not on PrimeFaces 6.2 yet and cannot upgrade for some reason, then you need to manually override the PrimeFaces SelectManyCheckboxRenderer#encodeOptionLabel() as below in order to recognize and render it:

public class YourSelectManyCheckboxRenderer extends SelectManyCheckboxRenderer {

    @Override
    protected void encodeOptionLabel(FacesContext context, SelectManyCheckbox checkbox, String containerClientId, SelectItem option, boolean disabled) throws IOException {
        ResponseWriter writer = context.getResponseWriter();
        writer.startElement("label", null);
        writer.writeAttribute("for", containerClientId, null);

        if (option.getDescription() != null) {
            writer.writeAttribute("title", option.getDescription(), null);
        }

        if (disabled) {
            writer.writeAttribute("class", "ui-state-disabled", null);
        }

        if (option.isEscape()) {
            writer.writeText(option.getLabel(), null);
        } else {
            writer.write(option.getLabel());
        }

        writer.endElement("label");
    }

}

faces-config.xml中进行了以下注册:

<render-kit>
    <renderer>
        <component-family>org.primefaces.component</component-family>
        <renderer-type>org.primefaces.component.SelectManyCheckboxRenderer</renderer-type>
        <renderer-class>com.example.YourSelectManyCheckboxRenderer</renderer-class>
    </renderer>
</render-kit>

这篇关于p:selectManyCheckbox或其他p:selectMany */One *的Primefaces工具提示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆