Use CSS to do this.
<td>
<h:inputTextarea styleClass="areaClass" id="reason" tabindex="4" value=""/>
</td>
and in the CSS have the areaClass as:
.areaClass{
font-weight: bold;
font-size: x-large;
}
hello,
I use the tiny_mce wysiwyg editor and here it is decribed how you can use it with
jsf: http://wiki.apache.org/myfaces/WYSIWYG_Editor
it works very well, but I get this for example from db:
<h1>gf<font color="#ff0000">ffff</font></h1>
ff<strong>ffffff</strong>
and not the formated text.
How can i get the formated text without html tags?
thanks