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!

Navigation dynamic list - place icon on right of label and align right

PJoyceDec 22 2022

Hi There
I have a dynamic LHS Menu and I want to add an image to the RHS that is aligned right and vertically alligned across all entries - to show progress in a process. I have atttached an image to give an idea. Can anyone suggest how I might do this?
Also - I have had to hard code the path to the image - how can I reference #WORKSPACE_IMAGES# here?
Thank you
Paul

menu-item.PNG
Dynamic query for list (edited slightly for this post):

select null,
      decode(flow_list_label,'   4. Label',
          decode(apx_cdd.is_edd_required_v2(:P0_SUBJECT_FILE_ID),'Y',flow_list_label, 
                  '<span style="color: #CFCFCF">'||flow_list_label||
               '</span><img align="right" src="d1/r/files/static/v376/triangle-s2-16-1.svg"></img>'), 
                        flow_list_label||'<span style="float:right"><img src="d1/r/files/static/v376/triangle-s2-16-1.svg"></img></span>') label,
      'f?p=1203:'|| apex_page_no ||':'||:APP_SESSION||':::'|| apex_page_no ||':P0_QUESTION_GROUP_ID,P0_MODULE_ID:'|| question_group_id||','|| module_id target,
 decode(question_group_id,:P0_QUESTION_GROUP_ID,'Y','N') is_current
 from mod_flow
 WHERE MODULE_ID = :P0_MODULE_ID
  AND display_flag = 'Y'
 ORDER BY seq_no;
Comments
Post Details
Added on Dec 22 2022
1 comment
323 views