English 中文(简体)
选取的 OneMenu 在应该 [重复] 时不起作用
原标题:primefaces selectOneMenu doesn t working when it should [duplicate]

这个奇怪的问题让我损失了好几天, 我重复检查了一切......但我所选择的OneMenu根本行不通......我不明白为什么。

这是我的密码:

我的jshf(我的jsf)

<p:selectOneMenu id="entityType"  
      value="#{entityBean.entity.type}" 
      style="width:240px;" 
      converter="entityTypeConverter"
      valueChangeListener="#{entityBean.entityTypeListener}"
      required="true">
      <f:selectItems value="#{entityBean.typeList}"
              var="et"
              itemLabel="#{et.name}"
              itemValue="#{et}" />
</p:selectOneMenu>

我的转换器 :

    @FacesConverter("entityTypeConverter")
    public class EntityTypeConverter implements Converter {
        public Object getAsObject(FacesContext context, UIComponent component, String value) {
            if (value == null || value.length() == 0) {
                return null;
            }
            Long id = Long.parseLong(value);

            return EntityType.findEntityType(id);
        }

        public String getAsString(FacesContext context, UIComponent component, Object value) {

            return value instanceof EntityType ? ((EntityType) value).getId().toString() : "";
        }
    }

它与我创建时预期的一样有效( 它通过选定值), 但当我试图编辑所选类型实体时, 所选类型实际上从未被选中 。 我尝试用原始面3.1. 1 和 3. 2 来尝试, 但是在查看/ 编辑模式下, 我无法获得选中值 。

我做错什么了?

提前感谢!

最佳回答

如果您的 eques () eques () enityType 类丢失或损坏。 鉴于您在您的 EnityType 类中有 属性, 似乎能识别此实例的独特性, 可能会发生这种情况。 以下最起码的操作应该适合您 :

@Override
public boolean equals(Object other) {
    return (other instanceof EntityType) && (id != null)
        ? id.equals(((EntityType) other).id)
        : (other == this);
}

@Override
public int hashCode() {
    return (id != null)
        ? (this.getClass().hashCode() + id.hashCode())
        : super.hashCode();
}

hashCode () () a href= contract 。

问题回答

暂无回答




相关问题
Setting list items in ice:SelectOneMenu [duplicate]

I wish to set items from a list to the selectonemenu in icefaces. But when I do the same I get the following error: java.lang.ClassCastException: cannot be cast to javax.faces.model.SelectItem The ...

How to get both label and value from f:selectItems

I am working on a JSF page which has a dropdown based on List<SelectItem>: <h:selectOneMenu value="#{bean.selectedItem}"> <f:selectItems value="#{bean.availableItems}" /> </h:...

SelectOneMenu + CommmandButton

Hi I have the follonwing selectOneMenu <h:selectOneMenu value="#{modelsController.selected.idBrands}"> <f:selectItems value="{brandsController.itemsAvailableSelectOne}" /> </h:...

JSF link in SelectItem label

Is it possible to set a <a href />around my <f:selectItem itemLabel="label" /> where my link text is the itemLabel? I m using the plain sun components.

JSF selectOneMenu selectItem always null

I m trying to implement a JSF selectOneMenu item with a backing bean holding the selection. The problem is that the selectedItem is always null. Here is the code: .xhtml: <h:selectOneMenu ...

热门标签