Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In plain html, when I want to point-out a table row, I just write:

<tr onmouseover="javaScript_(jQuery)_Code_To_Add_Pointed_Out_Class"
    onmouseout="javaScript_(jQuery)_Code_To_Remove_Pointed_Out_Class">
...
</tr>

Is there a way to do this in a <h:dataTable> for JSF? Something with Primefaces or what else?

share|improve this question
Maybe a duplicate of this question: stackoverflow.com/questions/5055384/… – Sam Sep 3 '11 at 22:02

1 Answer

up vote 4 down vote accepted

Styling is to be done by CSS. E.g.

<h:dataTable styleClass="myTableClass">
    ...
</h:dataTable>

with

.myTableClass>tbody>tr { 
    background: pink;
}

.myTableClass>tbody>tr:hover { 
    background: purple; 
}

JavaScript hacks like in your question example are only necessary for ancient browsers which are already deprecated for long now.

share|improve this answer
Another good answer, it worked, many thanks! – Dr.Lesh Sep 4 '11 at 8:29
You're welcome. – BalusC Sep 4 '11 at 12:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.