20230227 - 사용자 접속 디바이스 정보 확인

Region - Type : Dynamic Content

Source - Language - PL/SQL



begin
  owa_util.print_cgi_env();
end;




select * from APEX_ACTIVITY_LOG




참고

https://forums.oracle.com/ords/apexds/post/display-user-agent-on-page-8638

 http://www.grassroots-oracle.com/2012/11/categorizr-for-apex-extended.html



--==============================================================================
-- Returns TRUE if the current page has been designed for Desktop browsers.
--==============================================================================
function is_desktop_ui return boolean;
--
--==============================================================================
-- Returns TRUE if the current page has been designed for smartphone devices
-- using jQuery Mobile.
--==============================================================================
function is_jqm_smartphone_ui return boolean;
--
--==============================================================================
-- Returns TRUE if the current page has been designed for tablet devices
-- using jQuery Mobile.
--==============================================================================
function is_jqm_tablet_ui return boolean;
--
--==============================================================================
-- Returns the UI type for which the current page has been designed for.
--==============================================================================
function get_ui_type return varchar2;

댓글 없음:

댓글 쓰기

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

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