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!

Dynamic actions for the Region Display Selector

839551Feb 14 2011 — edited Feb 16 2011
I have a question about the dynamic actions.

In my page onload proces I add id's and classes to the list items from the Region Display Selector.

When I examine the page with firebug I see the ID's and the classes.

When I try to use these id's or classes in my dynamic actions nothing happens.

this is my onload code:

$("ul[class=apex-rds]").children().each(function(i){$(this).attr('id','rds_'+i);$(this).addClass('rds_'+i);});

I try to use these classes or id's by defining a dynamic action using
selection type = Jquery selector and
Jquery selector = .rds_1
or
Jquery selector = #rds_1

I try them both.

Is it possible what I am trying to do?

When I use the generate class .apex-rds-first, then the dynamic action is working correct.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 16 2011
Added on Feb 14 2011
7 comments
1,007 views