I have html code in one column. Loaded html code to one bean. My question is how to display this html code using jsf tags.
Asked
Active
Viewed 2,389 times
1 Answers
6
You can use a <h:outputText>
component, and set escape="false"
.

Romain Linsolas
- 79,475
- 49
- 202
- 273
-
Thank you romaintaz. i have one more doubt. I loaded the data from db and set to beans. It diplay in screen. Suppose if i click any button in same screen, the data loaded again from db. All beans are null for every request. That is the reason i am unable to stop the loading. Can you please tell me how to resolve this issue? – venkat Feb 04 '11 at 07:38
-
@venkat Please create another question (as it is a different problem), and post some code to explain the situation. – Romain Linsolas Feb 04 '11 at 08:11