JS :
$("#your-button-id").on("click", function(e) {
e.preventDefault();
return false;
});
CSS:
.your-button-class {
pointer-events: none;
}
Button URL:
javascript:void(0);
JS :
$("#your-button-id").on("click", function(e) {
e.preventDefault();
return false;
});
CSS:
.your-button-class {
pointer-events: none;
}
Button URL:
javascript:void(0);
// 기본 alert 대신:
apex.message.showPageSuccess('저장되었습니다'); // 성공 메시지 (초록색)
apex.message.showPageError('오류가 발생했습니다'); // 에러 메시지 (빨간색)
apex.message.showPageWarning('주의가 필요합니다'); // 경고 메시지 (노란색)
apex.message.showPageInfo('참고해주세요'); // 정보 메시지 (파란색)
// 타이틀과 함께 표시:
apex.message.alert('메시지 내용', '타이틀'); // 확인 버튼이 있는 모달 창
// 콜백 함수 사용:
apex.message.confirm('저장하시겠습니까?', function(okPressed) {
if (okPressed) {
// OK 버튼 눌렀을 때 실행할 코드
}
});
// 자동으로 사라지는 메시지:
apex.message.clearErrors();
apex.message.showPageSuccess('저장되었습니다', function() {
// 3초 후 자동으로 사라짐
});
//아이콘 포함
SQL :
Column Initialization JavaScript Function :
참고
https://apexapps.oracle.com/pls/apex/r/apex_pm/ideas/details?idea=FR-2656&cs=1UuSgWyFNcx0mxFPVL9acva6DYDiz8xoQU3igQfQX24AfPiSBv0TbsWdvNk6cKRXRJnAQd-FirfRIh0qh3XMbQA
처리
참고
https://apex.oracle.com/pls/apex/apex_pm/r/ut/javascript-apis
JS Page Load :
참고
1. 하단 Dock 독 메뉴
Navigation Menu - List Template : Top Navigation Tabs
JS :
CSS :
3. 하단 Sticky 버튼
Appearance - Template : Buttons Container
Appearance - Template Options : Stick to Bottom for Mobile
4. 다음 기능
참고
G_USER Specifies the currently logged in user. G_FLOW_ID Specifies the ID of the currently running application. G_FLOW_STEP_ID Specifi...