❇️ OrclQA.Com is a question and answer forum for programmers.
❇️ Here anyone can ask questions and anyone can answer to help others.
❇️ It hardly takes a minute to sign up and it is 100% FREE.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
How to update column when dialog is closed?
pavlos
Hi! Sorry for my late answer. Create function on parent page: function customEvent(event, data){ apex.event.trigger(document, event, data); } Then on the Modal page in dialog section add: close: function() { customEvent('customDialogClose', {modalPageId: 'MODAL_CLOSE_FIXED'});} Add dynamic action: ERead more
How to escape "&" in checksum of URL?
pavlos
Solution: APEX_ESCAPE.HTML(APEX_UTIL.PREPARE_URL ( p_url => 'f?p=' || :APP_ID || ':1:'|| :APP_SESSION ||'::NO::P1_ID:'|| x.ID ||'', p_checksum_type => 'PUBLIC_BOOKMARK'))
How to escape "&" in checksum of URL?
pavlos
I found a note from Oracle: https://docs.oracle.com/en/database/oracle/application-express/20.2/aeapi/PREPARE_URL-Function.html#GUID-A61DFF37-2211-43E4-B7FE-B89C31E151FF
How to escape "&" in checksum of URL?
pavlos
Also I need to incloude that URL in export, file as PUBLIC_BOOKMARK
How to escape "&" in checksum of URL?
pavlos
is that a secure way?
How to redirect page with DA using PL/SQL?
pavlos
Thanks, but when I use this code in DA - PL/SQL Execute Server-side Code, it doesn't work.
How to use data dynamically in Oracle JET timeline?
pavlos
Thank you Vinish! I solved problem with JSON.parse($v("PXX_JSON"));
How to use data dynamically in Oracle JET timeline?
pavlos
I tried, when I use code from page item (item has computation before header) it works. but, when I reference item: self.seriesData = $v("PXX_JSON"); I got "No data to display".
How to change background color dynamically in cards region?
pavlos
Thanks a lot! Works perfectly!
Using Localtimestamp in Oracle APEX
pavlos
Hi! Did you check your time zone settings? Go to app > Edit application attributes > Globalization and set Automatic Time Zone to on. From Oracle Apex help: "Controls the setting of the database session time zone. When set to On, the client time zone is derived from the client's Web browser anRead more