jsf newcommer needs help
Hello,
I'm working on an existing web project that uses faces. I have the problem that I want to display an image on a table. The image is based on a value in a bean {green, yellow, red}, so instead of returning the value, it returns html code for a image for that particular value (Example: value is green, it returns <img src="images/green.gif"/>.
Problem is that the page displays the actual text, not the image. I've tried adding escape="false" to the tag, but get an error(not part of tag library). I have code that does display it correctly, but it uses
<h:outputText value="#{name.section}" escape="false"/> and the code I'm working on uses <cnot:out value="Score: ${note[4]}" />
Is there a simple solution without having to rewrite everything? Thanks...

