i want to get specific element in a Set in JSF 2 please advise how to do that.
|
This problem is not specific to JSF/EL. Already in plain Java you cannot access a specific element in a This works in a predictable way for If you're using EL 2.2 (your question history confirms this), then you can just use
Again, this makes no sense if it's an unordered set like |
|||
|
|
|
Your problem is quite unclear, but JSF2 doesn't really support Set. Components like |
|||
|
|
public List getSetAsList(){return new ArrayList(mySetVariable);}– Daniel Aug 8 '12 at 10:25