I want to fill a selectonemenu but always I have this error :
java.lang.String cannot be cast to javax.faces.model.SelectItem
this is the code:
public class ToolsJIRA implements Serializable{
private String myChoicePeriod;
//getters and setters
}
JSF:
<h:selectOneMenu value="#{ToolsJIRA.myChoicePeriod}">
<f:selectItem itemValue="Month" value="Month"/>
<f:selectItem itemValue="Week" value="Week"/>
<f:selectItem itemValue="Year" value="Year"/>
</h:selectOneMenu>
I have found that I should write a converter but I don’t Know why? beacause I have seen some example work without a converter??
thank you
Try this code in in your webpage
Do not use value attribute its inteded for different purpose