I've managed to solve the problem! I've installed myfaces-tomahawk extension components (tomahawk.jar) and added tomahawk.taglib.xml (http://wiki.apache.org/myfaces/Use_Facelets_with_Tomahawk) I've also added definition of my converter to this taglib file. Now (most important:), istead of <f:selectItems> I use <t:navigationMenuItems> and it works! <t:dataTable value="#{employeeList}" var="empl" rendered="true" > | <t:column> | <t:outputText value="#{empl.name}"/> | </t:column> | <t:column> | <t:selectOneMenu id="country" value="#{empl.country}" converter="CountryConverter"> | <t:navigationMenuItems value="#{selectItems.countries}" /> | </t:selectOneMenu> | </t:column> | </t:dataTable> |
Pawel Kaczor View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3926345#3926345 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3926345 ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
