Hello, I am trying to "re-render" through ajax a richfaces element contained in a cluetip tooltip div and it is not working. Can anyone help please?
Here is the code for the div: <a id="aa" rel="#tt">toto</a> <div id="tt" style="display: none"> <a4j:outputPanel id="sculptureSuggereeTT" ajaxRendered="true"> <p> <rest:link id="detailTT" value="sculptureAction" styleClass="miniature-link"> <f:param name="id" value="#{suggestionOeuvreView.sculptureSuggeree.sculptureID}" /> <f:param name="titre" value="#{jbm:normaliserURL(suggestionOeuvreView.sculptureSuggeree.sculpturei18nMap[view.locale.language].titre)}" /> <h:graphicImage value="#{initParam['com.jeanbaptistemartin.static.url']}/#{suggestionOeuvreView.sculptureSuggeree.photoDetail}" styleClass="miniature-image" /> </rest:link> </p> <p> <rest:link id="texteTT" value="sculptureAction"> <f:param name="id" value="#{suggestionOeuvreView.sculptureSuggeree.sculptureID}" /> <f:param name="titre" value="#{jbm:normaliserURL(suggestionOeuvreView.sculptureSuggeree.sculpturei18nMap[view.locale.language].titre)}" /> <h:outputText value="#{suggestionOeuvreView.sculptureSuggeree.sculpturei18nMap[view.locale.language].titre}, " /> <h:outputText value="#{suggestionOeuvreView.sculptureSuggeree.sculpturei18nMap[view.locale.language].matiere}, " /> <h:outputText value="#{suggestionOeuvreView.sculptureSuggeree.annee}"> <f:convertDateTime pattern="yyyy" timeZone="Europe/Paris"/> </h:outputText> </rest:link> </p> </a4j:outputPanel> </div> Here is what I posted on jboss Richfaces forum: http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231946 Any comment or clue welcome, Julien.