How to group selectItems in selectOneMenu

99封情书 提交于 2019-11-28 07:23:12

问题


I would like to use the example from the primefaces showcase to group selectItems in selectOneMenu:

<h:outputText value="Grouping: " />  
    <p:selectOneMenu value="#{formBean.car}">  
        <f:selectItem itemLabel="Select One" itemValue="" />  
        <f:selectItems value="#{formBean.cars}" />  
    </p:selectOneMenu> 

My problem is, that there is no implementation of the bean. Now I don't know, how to implement the grouping of the selectItems inside the method getCars(). And I can't find any other example.


回答1:


The source code of the showcase's #{formBean} is available here. Here's an extract of relevance:

private List<SelectItem> cars;

public FormBean() {
    SelectItemGroup g1 = new SelectItemGroup("German Cars");
    g1.setSelectItems(new SelectItem[] {new SelectItem("BMW", "BMW"), new SelectItem("Mercedes", "Mercedes"), new SelectItem("Volkswagen", "Volkswagen")});

    SelectItemGroup g2 = new SelectItemGroup("American Cars");
    g2.setSelectItems(new SelectItem[] {new SelectItem("Chrysler", "Chrysler"), new SelectItem("GM", "GM"), new SelectItem("Ford", "Ford")});

    cars = new ArrayList<SelectItem>();
    cars.add(g1);
    cars.add(g2);
}

Thus, your missing key is SelectItemGroup.

See also:

  • Our selectOneMenu wiki page - "Dynamic list with groups"



回答2:


In this example getCars() returns a list of javax.faces.model.SelectItem objects. There is one subclass of this class, named SelectItemGroup which represent a grup in selectOneMenu. Value field of this object is ignored and just label is used. So in your list you can mix SelectItem and SelectItemGroup objects to organize your list in groups. Note, that SelectItem objects which are part of group are present as array in SelectItemGroup object. You can set that array through constructor or setter (setSelectItems()).



来源:https://stackoverflow.com/questions/14626764/how-to-group-selectitems-in-selectonemenu

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!