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

What is the best way to implement a country autocomplete textfield in JSF2?

I would like to know if there are better ways than implementing a bean to inject a list of countries either from the database or an XML data source.

I am using the primefaces component library, would there be a ready-made plugin i could use?

share|improve this question

1 Answer

up vote 1 down vote accepted

You're going to need a managed bean anyway. Otherwise you can't reference it in JSF views. If the data is not subject to changes, just load and initialize it once in an application scoped bean. If the data needs to be refreshed on, for example, daily basis, make use of a @Singleton EJB with @Schedule and let your managed bean delegate to it.

PrimeFaces has a <p:autoComplete> component. You can find an example on their showcase. You can let the completeMethod point to the application scoped bean and point the value to the request/view scoped form bean.

share|improve this answer
Thanks for the practical insights. – Chin Boon Nov 14 '11 at 0:14
You're welcome. – BalusC Nov 14 '11 at 0:14

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.