Hi Guys,
I have a rich:dataTable
. I want to hide a row with this code:
<c:if test="#{not empty documents && documents.size!=0}">
<rich:jQuery selector="#_inboxTable_ tr"
query="ready(function() {
jQuery.noConflict();
if ( jQuery(this).find('checkboxStatus').attr('checked', true)) {
new Effect.Fade(jQuery(this));
}
})"
/>
</c:if>
The problem is that i receive: element.getInlineOpacity is not a function error....
I was initially supposing that I cannot hide a row with this Fade effect but I have made a simple other table and all was working ok...
Can you give me a clue on this issue?