jsf problem
<h:selectOneMenu value="#{transaction.tranType}">
<f:selectItem itemValue="" itemLabel="" />
<f:selectItem itemValue="red" itemLabel="RED" />
<f:selectItem itemValue="white" itemLabel="WHITE" />
<f:selectItem itemValue="black" itemLabel="BLACK" />
</h:selectOneMenu>
<h:commandButton action="red" value="#{common.select}" />
I would like to be able to have "#{transaction.tranType}" instead of red
please any help will be great
thank you

