Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Whole row of classic report clickable

915782Feb 7 2012 — edited Feb 7 2012
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
This post has been answered by Yann39 on Feb 7 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 6 2012
Added on Feb 7 2012
8 comments
1,733 views