jsf problems
<h:selectOneMenu value="#{transaction.tranType}">
<f:selectItem itemValue="" itemLabel="" />
<f:selectItem itemValue="red" itemLabel="RED" />
<f:selectItem itemValue="black" itemLabel="WHITE" />
<f:selectItem itemValue="white" itemLabel="BLACK" />
</h:selectOneMenu>
<h:commandButton action="red" value="#{common.select}" />
I would like to be able to have in the action "#{transaction.tranType}" instead of red .... so i would know in my faces-config.xml where to go
any help will be great
thank you

