- I am using JSF RI 1.1. How to add rich text editor component? Is there any rich text editor component available?
I am displaying set of images horizontally using the below code. Selected image is stored in database. while showing the images in edit mode, how to highlight the previously selected image?
<t:dataList var="item" value="#{occasionBean.messageInfo}" layout="simple"> <h:commandLink action="#{occasionBean.selectedImage}" > <h:graphicImage width="100" height="100" url="#{item.imageSnapUrl}" onclick="return setMsgId(this.id,{item.img_id},'{item.imageUrl}');" id="test"> </h:graphicImage> </h:commandLink> </t:dataList>
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
1) Mojarra Scales has a htmlEditor component.
2) Add a
with this getter
and this CSS
|
|||||
|
|
Richfaces has editor component. |
|||
|
|
