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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Jquery selector is not running in oracle apex

raghunadhanFeb 10 2020 — edited Feb 11 2020

Hi , have  created a report with an button approve and reject for each row of the classic report  using link column .

I will set the of unique column of the report  to the item and using that  item value approve it by clicking approve it by plsql dynamic action but it not  working while clicking the approve or reject button . Please help on this.

apex.oracle.com

workspace :raghu_Dev

username:raghunadhan.ve@gmail.com

pwd:Logu!195689

app id:29374

page id : 8

This post has been answered by Scott Wesley on Feb 11 2020
Jump to Answer

Comments

Scott Wesley Feb 10 2020

You just needed a space between your ID and class selector

#my_footnote .approve

I see you already have the Scope as Dynamic, which is another common problem (when set to Static).

raghunadhan Feb 11 2020 — edited on Feb 11 2020

Hi Scott Wesley thanks for your help.But still its not working when i press reject it should display the id value in item and row should not display in the report.Please help

Scott Wesley Feb 11 2020
Answer

Your reject dynamic action was expecting expression, not a procedure call to $s

Either use $s in a JavaScript code, or just this in a JavaScript Expression

$(this.triggeringElement).data('id')

Marked as Answer by raghunadhan · Sep 27 2020
raghunadhan Feb 11 2020

Hi scott Thanks its working now and can you please help me on this "error Processing process" in Oracle apex which i asked in previous thread.

Scott Wesley Feb 11 2020

I was just about to add, debugging this was all based around using the debugging tools.

I could see when the DA was/wasn't firing, and I went to add a console.log to check the value when I realised the wrong expression was in the DA attribute.

And perhaps mark this thread complete, so others don't think it still needs attention.

raghunadhan Feb 11 2020

Hi scott ,

Sorry i could not able to understand could you please explain the reason of that error processing

1 - 6

Post Details

Added on Feb 10 2020
6 comments
868 views