20230520 - Static Resources

https://blogs.oracle.com/apex/post/announcing-oracle-apex-static-resources-on-content-delivery-network


https://blog.cloudnueva.com/apex-static-files


Updates for later APEX Versions

April 7, 2019:  APEX 19.1 static resources are now available at https://static.oracle.com/cdn/apex/19.1.0.00.15/

November 19, 2019:  APEX 19.2 static resources are now available at https://static.oracle.com/cdn/apex/19.2.0.00.18/

April 23, 2020:  APEX 20.1 static resources are now available at https://static.oracle.com/cdn/apex/20.1.0.00.13/

October 21, 2020:  APEX 20.2 static resources are now available at https://static.oracle.com/cdn/apex/20.2.0.00.20/

May 12, 2021: APEX 21.1 static resources are now available at https://static.oracle.com/cdn/apex/21.1.0/

November 4, 2021: APEX 21.2 static resources are now available at https://static.oracle.com/cdn/apex/21.2.0/.

May 3, 2022: APEX 22.1 static resources are now available at https://static.oracle.com/cdn/apex/22.1.0/. 

November 10, 2022: APEX 22.2 static resources are now available at https://static.oracle.com/cdn/apex/22.2.0/. 

May 17, 2023: APEX 23.1 static resources are now available at https://static.oracle.com/cdn/apex/23.1.0/. 

20230511 - Sticky Header

1. 최상단에 버튼 리전 생성

Region - Identification - Title : BTN Header

Type : Static Content

Appearance - Template : Buttons Container

Advanced - Static ID : SID_BTN_HEADER



2. 두 개의 버튼 생성 및 위치 지정

3. 아래로 이미지 아이템

4. 그 아래로 Static Contents



5. CSS


.t-Header-branding {
    display: none;
    visibility: hidden;
}

#SID_BTN_HEADER {
    position: fixed;
    z-index: 2;
    --ut-button-region-border-radius: 0;
    --ut-button-region-box-shadow: none;
    --ut-button-region-margin: 0rem;
    border-width: 0;
    border-top-width: var(--ut-button-region-border-width,1px);
    left: 0;
    right: 0;
    background-color: transparent;
}






20250202 - IG 다운로드 버튼 바로 보이기

JS initialization Code : function (config) {     var $ = apex.jQuery,         toolbarData = $.apex.interactiveGrid.copyDefaultToolbar(),  ...