Currently I am using a rich:dataTable to loop through records. I simply output the text like this:
<h:outputText value="#{property.variableName}" />
This displays the data properly in the table. Now I want to add IDs to test my stuff. I tried adding the same property as the ID like this:
<h:outputText id="#{property.variableName}" value="#{property.variableName}" />
The result is an empty ID error. I prepended it with "id_" and all that gets returned to the DOM is "id_" (no property variableName) added to it.
Am I losing my mind? I feel as if this should work as I've done it in the past.