I have a datatable which has a column with a value of commandlink. I want to change the background color of that row, when the user click the commandlink. Any idea?
<o:column id="name" width="8%"
class="result_col" sortingComparator="caseInsensitiveText">
<f:facet name="header">
<h:outputText value="#{message.label_name}" />
</f:facet>
<o:commandLink
action="#{page.getName(name)}"
onajaxend="openHistoryName();">
<h:outputText style="color:#A3A7DC;" value="Click here" />
</o:commandLink>
</o:column>
o:column does not support the class attribute. Use styleClass instead.
Since you are making an AJAX call on the click of a button, you have two options:
Pass the new CSS styleClass as a response. Ex:
So when you render your datatable/row, you get the updated style applied automatically.