Hi, I may be stating this incorrectly, but is there any way to manipulate (using JavaScript) the content in an cluetip once the content has been (dynamically) loaded to the external .jsp?
I have a list of items being displayed, and I want to bold some of them. I cannot add ID's or classes individually to any of these items in the list, prior to rendering. It's basically a data dump
FYI, we're using JSF to pull the items on the .jsp, which are rendered in HTML as a table:
<h:panelGrid columns="1">
<h:column>
<h:selectManyCheckbox layout="pageDirection" value="#{advancedtoolscontroller.roleItems}">
<f:selectItems value="#{advancedtoolscontroller.roleList}" />
</h:selectManyCheckbox>
</h:column>
</h:panelGrid>
Any help is greatly appreciated...