9

Primefaces でさまざまな色のオプションを表示する必要があります。

動的アイテム(リスト)を含むselectOneMenuがあります

<p:selectOneMenu id="carMenu" style="margin-top:4px;"
    value="#{Bean.selectedCar}" effect="fade"
    autoupdate="true">
    <f:selectItems id="carsId"
        value="#{myBean.allCars}" var="carItems"
        itemLabel="#{carItems.name}" itemValue="#{carItems}" />
</p:selectOneMenu>
 private List<Cars> allCars;

車が販売されている場合は、オプションの背景を赤、そうでない場合は黒で表示する必要があります。私のモデルでは、車が販売されたかどうかを示す値 (ブール値の販売) を返す属性を取得しました。

selectOneMenu で色を設定するにはどうすればよいですか?

4

1 に答える 1

10

解決策は、PrimeFaces 4.0 以降でこれを表示する「高度な」方法を使用することです。

テーブルで行うように、f:selectItemsタグとp:columnタグを組み合わせてp:selectOneMenu(ショーケースを参照)、列自体の反復を行うことができます。var

その場合、条件によっては列全体に を設定するのが理想ですがstyleClass、残念ながらうまくいきません。幸いなことに、目標を達成できる Javascript/jQuery コードをいくつか追加して、このSSCCEを確認してください。

XHTML ページ

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui" style="height: 400px;">
<h:head>
    <style type="text/css">
red-background {
    //Empty, used just as a reference to set the style with jQuery
}
</style>
</h:head>
<h:body>
    <h:form>
        <p:commandButton action="#{bean.send}" value="Send" ajax="false" />
        <p:selectOneMenu id="carMenu" style="margin-top:4px;"
            value="#{bean.selectedCar}" effect="fade" autoupdate="true" var="car"
            converter="omnifaces.SelectItemsConverter" onchange="setSelectionColor();">
            <f:selectItems id="carsId" value="#{bean.allCars}" var="carItem"
                itemLabel="#{carItem.name}" itemValue="#{carItem}" />
            <p:column>
                <h:outputText value="#{car.name}"
                    styleClass="#{car.sold ? 'red-background' : ''}" />
            </p:column>
        </p:selectOneMenu>
    </h:form>
    <script>
        $(document).ready(function() {
            //Set red background for the options (not for td, but for its parent tr)
            $(".red-background").parent().css( "background-color", "red" );
            setSelectionColor();
        });
        function setSelectionColor(){
            //Check if the selected value has a red background 
            //(active and red-background styles altogether), 
            //if true, set the selectonemenu label to red too
            if($(".ui-state-active .red-background").size() > 0){
                $(".ui-selectonemenu-label").css( "background-color", "red" );
            }else{
                $(".ui-selectonemenu-label").css( "background-color", "white" );
            }
        }
    </script>
</h:body>
</html>

Bean.java

@ManagedBean
@ViewScoped
public class Bean implements Serializable {

    public class Car implements Serializable {
        String name;
        boolean sold;

        public Car(String name, boolean sold) {
            this.name = name;
            this.sold = sold;
        }

        public String getName() {
            return name;
        }

        public boolean isSold() {
            return sold;
        }
    }

    private List<Car> allCars = Arrays.asList(new Car("Audi", true), new Car(
            "Mercedes", false));

    public List<Car> getAllCars() {
        return allCars;
    }

    private Car selectedCar;

    public Car getSelectedCar() {
        return selectedCar;
    }

    public void setSelectedCar(Car selectedCar) {
        this.selectedCar = selectedCar;
    }

    public void send() {
        System.out.println("Sent " + selectedCar.name);
    }

}

背景ではなく、フォントの色のみを設定することもできます。

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui">
<h:head>
    <style type="text/css">
.red-font {
    color: red;
}
</style>
</h:head>
<h:body>
    <h:form>
        <p:commandButton action="#{bean.send}" value="Send" ajax="false" />
        <p:selectOneMenu id="carMenu" style="margin-top:4px;"
            value="#{bean.selectedCar}" effect="fade" autoupdate="true"
            var="car"
            converter="omnifaces.SelectItemsConverter">
            <f:selectItems id="carsId" value="#{bean.allCars}" var="carItems"
                itemLabel="#{carItems.name}" itemValue="#{carItems}" />
            <p:column>
                <h:outputText styleClass="#{car.sold ? 'red-font' : ''}"
                    value="#{car.name}" />
            </p:column>
        </p:selectOneMenu>
    </h:form>
</h:body>
</html>
于 2013-10-16T14:19:02.857 に答える