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

JSF use converter when translating value between backing bean and frontend jsf page.Jsf also support custom converters.My question is when i want to use a list of my custom object as selectitems for a face component,how can i convert this object list to selectitems.I am currently doing this usig a metod which is return a List ,but there should be a way doing this with coverters.

I am using jsf 1.2 myfaces

share|improve this question
Sorry i will set correct answers. – ayengin Mar 21 '11 at 11:01

2 Answers

Maybe this good tutorial about converters is acceptable?

share|improve this answer
It should be a easy task to convert List<Foo> myfoos as <f:selectItems value="#{foo.myfoos}" /> <f:converter converterID="convertfooTOselectıtem" /> – ayengin Mar 24 '11 at 19:34
Is your problem solved? – Matt Handy Mar 25 '11 at 11:27
Link not workig i try it with different browsers not only this everything start with balusc – ayengin Mar 27 '11 at 21:04
Don't you just mean "everything on blogspot.com"? Some insane corporate firewalls indeed do that. Try Google cache :) – BalusC Mar 28 '11 at 18:23
up vote 0 down vote accepted

JSF selectItem question this link is what i have look for.

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.