20220327 - APEX Office Print 설치

매달 100장의 출력은 무료로 사용 가능하고 더 많은 출력이 필요하면 유료 플랜을 사용해야 함. 다운로드와 API KEY 발급을 위해서는 https://www.apexofficeprint.com/ 에 가입해야 함.


1. 해당 DB에 AOP 패키지를 컴파일


2. AOP 플러그인 임포트



3. 페이지 하나 만들어 버튼 생성 후 DA-SQL 작성


4. 실행 후 결과 확인



이렇게 pdf 출력 가능합니다.




참고

https://www.apexofficeprint.com/


Step 1: Compile the AOP package by running a script

Follow these steps to import the package in your schema:

  1. Go to SQL Workshop - SQL Scripts
  2. Click the Upload button
  3. Choose the file aop_db_pkg.sql from the directory db
  4. Click the run button and hit Run now.

Step 2: Import the AOP Plug-in

Follow these steps to import the plug-in in your application:

  1. Go to Shared Components > Plug-Ins
  2. Click Import
  3. Browse and locate the installer file (plugin/dynamic_action_plugin_be_apexrnd_aop_da.sql)
  4. Complete the wizard.

Finally modify the settings of the AOP Plug-in to point to our cloud or to your on-premise installation:

  1. Go to Shared Components > Component Settings
  2. Select APEX Office Print (AOP) [Plug-in]
  3. Specify the url, for our cloud it's http://www.apexofficeprint.com/api and add your API key which you find in your dashboard after logging in on www.apexofficeprint.com or specify your on-premise url of AOP.
    Next to specifying the AOP URL and API Key, you can also specify if you want to set the plug-in in debug mode and for the on-premise version of AOP you can also change the (PDF) Converter.
  4. Click Apply.

You should now be able to start using the AOP Plug-in, see the Use the AOP Plug-in section.


Installation note:
To use AOP you may need to configure your ACL (Active Control List) settings to allow APEX to access:
 http(s)://www.apexofficeprint.com/api
For more details please refer to the Oracle APEX installation guide.




20220310 - APEX 신규 환경으로 이사 후 이름 변경

새로운 환경으로 이사 후 애플리케이션과 페이지 이름을 변경하는 곳에 대한 기록

이렇게 두 곳이 눈에 띄게 보임

1) 페이지 표시 탭

2) 페이지 안쪽 애플리케이션 명




해당하는 페이지에 가서 페이지-제목 변경




그리고 눈에 띄지는 않지만 애플리케이션 속성에서 각 항목 변경

이름, 애플리케이션 별칭, 대체 문자, 





마지막으로 애플리케이션 사용자 인터페이스에서 로고-텍스트를 변경





참고

 

20220305 - 리전 디스플레이 셀렉터 활용 Region Display Selector

리전 디스플레이 셀렉터 활용하면 아주 간단하게 페이지 내에서 탭 스타일을 상세 선택 메뉴를 구성할 수 있음


1. 최상단에 리전

Region - Identification - Type : Region Display Selector


2. 그 아래로 각 조회가 될 두 개의 리전을 배치 후

Region - Region Display Selector 선택



3. 기본적으로 모두 표시라는 그룹이 보이고 이것이 선택되었을 경우는 특정 선택된 리전만 보이는 것이 아니라 전체가 보임, 안 보이게 하는 방법은 자바스크립트를 추가하여 조정.

Page - JavaScript - Execute when Page Loads :


$(".apex-rds li:first-child").remove();
$(".apex-rds li:first-child").addClass("apex-rds-first");
$(".apex-rds li:first-child").addClass("apex-rds-selected");
$(".apex-rds-container").siblings().slice(1).hide();





4. v21.2 에서는 show all 모두 보기에 대한 설정이 있음




참고


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

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