Good morning,
I tried this solution to make a whole row in a classic report clickable:
{message:id=9656396}
It worked pretty well but I only on the first open page of a multi page report. If I go to the next or previous page the rows are not clickable anymore. I tried to use livequery but ended up with clickable rows on every second page:
The report loads with clickable rows. First time I click 'next' the rows are not clickable, second time they are clickable again and so on.
My livequery statment looks like this:
$(document).ready(function()
{
$('table tr .myClass td').livequery(function(){
$(this).css("cursor","pointer");
return false;
});
});
Can anyone please give me a hint what I'm doing wrong here and how to solve my Problem?
Cheers,
Andreas
PS: How can I format the sourcecode in this forum?
edit: format