Created
November 28, 2024 14:53
-
-
Save phartenfeller/0d63c7e0b94ace9cfeb52c8bd9189951 to your computer and use it in GitHub Desktop.
apex_shortcuts.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 week: | |
return q'!<a class="a-Button a-Button--popupLOV lov-clear" aria-label="1 week" title="1 week" href="javascript:$s('#CURRENT_ITEM_NAME#','!' || to_char(sysdate + 7, 'DD.MM.YYYY') || q'!');">!' | |
|| '<span class="">1w</span>' | |
|| '</a>'; | |
Clear button: | |
return '<a class="a-Button a-Button--popupLOV lov-clear" aria-label="' || apex_lang.lang('Clear') || '" title="' || apex_lang.lang('Clear') || q'!" href="javascript:$s('#CURRENT_ITEM_NAME#','');">!' | |
|| '<span class="fa fa-close"></span>' | |
|| '</a>'; | |
Copy button: | |
return '<a class="a-Button a-Button--popupLOV lov-clear" aria-label="' || apex_lang.lang('Copy') || '" title="' || apex_lang.lang('Copy') || q'!" href="javascript:navigator.clipboard.writeText($v('#CURRENT_ITEM_NAME#'));">!' | |
|| '<span class="fa fa-copy"></span>' | |
|| '</a>'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment