java.lang.IllegalArgumentException: Argument Error: An option for component TransferToID was not an instance of javax.faces.model.SelectItem. Type found: java.util.ArrayList.
|
java.lang.IllegalArgumentException: Argument Error: An option for component TransferToID was not an instance of javax.faces.model.SelectItem. Type found: java.util.ArrayList.
|
|||
|
|
|
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
Otherwise (JSF 2.x) just the core components:
Note that |
||||
|
|