Mouse over effect with jQuery in richfaces datatable and datascroller combo

Posted by John on Stack Overflow See other posts from Stack Overflow or by John
Published on 2010-06-15T01:43:50Z Indexed on 2010/06/15 1:52 UTC
Read the original article Hit count: 735

Filed under:
|

Hi,

I'm problem with defining a mouse over effect for my datatables. I have

<a4j:form>
    <rich:dataTable id="dataTable"> ... </rich:dataTable>
    <rich:datascroller id="dataScroller" for="dataTable" />
</a4j:form>

<rich:jQuery selector="#dataTable tr" query="mouseover(function(){jQuery(this).addClass('active-row')})"/>
<rich:jQuery selector="#dataTable tr" query="mouseout(function(){jQuery(this).removeClass('active-row')})"/>

which are working fine on the very first page. However if I use the datascroller to goto another page, the mouseover effect is gone.

I've tried reRendering the table or the jQuery components, that didn't help with the problem at all.

Any suggestion on how I can get this working?

Thanks!

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about richfaces