Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

java.lang.IllegalArgumentException: Argument Error: An option for component TransferToID was not an instance of javax.faces.model.SelectItem. Type found: java.util.ArrayList.

share|improve this question

1 Answer

Although your question is a bit too brief to be acceptable I think, I hope I can guess what's going on. You're binding a list of something to a single selectItem component. This won't work, you need the plural version:

If you're using JSF 1.x, use Tomahawk:

<t:selectItems value="#{someBean.someList}" var="myItem" itemValue="#{myItem.value}" itemLabel="#{myItem.label}"  />

Otherwise (JSF 2.x) just the core components:

<f:selectItems value="#{someBean.someList}" var="myItem" itemValue="#{myItem.value}" itemLabel="#{myItem.label}"  />

Note that .value and .label are just examples here. Replace them as appropriate with the properties of the beans that are in your list.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.