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

I have a number of details about a product which I wish to display. In my db the status of these items is stored as a number eg 1 - Worldwide, 2 - Europe Only, 3 - US Only

I currently use:

<h:outputText value="#{product.value}" />

Instead of the number I would like to display an image instead. What would be the best way to go about this?

share|improve this question

1 Answer

up vote 2 down vote accepted

Have images with filenames like status1.gif, status2.gif, status3.gif and display it as <h:graphicImage> with a "dynamic" filename as follows:

<h:graphicImage value="status#{product.value}.gif" />
share|improve this answer
Absolutely perfect. Really simple and easy solution. Thanks for that mate – En-Motion Sep 23 '10 at 13:16
You're welcome. Don't forget to mark the answer accepted. See also stackoverflow.com/faq to learn how Stackoverflow works. – BalusC Sep 23 '10 at 13:18

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.