views:

26

answers:

0

Hi guys, i have a problem with h:selectOneMenu. If i put it in h:dataTable i'm unable to set the default value. This is the code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&gt;
<ui:component 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"&gt;
    <h:dataTable value="#{utenteBean.listaUtenti}"
                 var="utente"  >
        <h:column>
            <f:facet name="header">
                <h:outputText value="#" />
            </f:facet>
            <h:outputText value="1"/>
        </h:column>
        <h:column>
            <f:facet name="header">
                <h:outputText value="#{sW.headerUsername}" />
            </f:facet>
            <h:outputText escape="false"
                          value="#{utente.username}"/>
        </h:column>
        <h:column>
            <f:facet name="header">
                <h:outputText value="#{sW.headerEnabled}" />
            </f:facet>
            <h:form>
                <h:commandLink action="#{utenteBean.updateAbilitato}">
                    <h:outputText value="#{utente.enabled}">
                        <f:converter converterId="abilitatoConverter"/>
                    </h:outputText>
                    <f:setPropertyActionListener target="#{utenteBean.utente}"
                                                 value="#{utente}"/>
                </h:commandLink>
            </h:form>
        </h:column>
        <h:column>
            <f:facet name="header">
                <h:outputText value="#{sW.headerRuolo}" />
            </f:facet>
                <h:form>
                    <h:selectOneMenu value="ROLE_ADMIN"
                                     valueChangeListener="#{utenteBean.updateRuolo}">
                        <f:selectItem itemLabel="Utente" itemValue="ROLE_USER"/>
                        <f:selectItem itemLabel="Admin" itemValue="ROLE_ADMIN"/>
                    </h:selectOneMenu>
                </h:form>
            </h:panelGroup>
        </h:column>
    </h:dataTable>
</ui:component>

If i move the h:form with selectOneMenu out of h:dataTable all work. I'm using jsf2.0 on glassfish3

Any Idea?

UPDATE I have solved it by myself, i think there is a bug in <h:selectOneMenu value="ROLE_ADMIN" i changed the value="" from static to dynamic with a reference to an istance in managed bean and all work perfectly.