介紹如何使用 JSF 樣板製作頁面, 使得每個頁面可以有相同的頁首, 頁尾或共同的顯示外觀。
全文參考: https://hychen39.github.io/jsf_teaching/2018/10/31/JSF_Unit07.html
2018年10月31日 星期三
2018年10月23日 星期二
Show the message generated from the PL/SQL process
We need to show the messages from the PL/SQL process (back-end) to the user (front-end) very often.
One way is to use the global variable APEX_APPLICATION.G_PRINT_SUCCESS_MESSAGE. The Apex will shows the message in the upper right corner with the green box. The method is suitable for showing information that doesn’t need the user to interact with.
The second way is to use APEX_ERROR.ADD_ERROR procedure to add the message to the error stack. When loading the page, the Apex will show these messages. We can specify the locations of showing the messages either on the upper right corner or associate with pages items or event an error page. However, the APEX_ERROR.ADD_ERROR procedure will interrupt the request processing process such that the codes after the APEX_ERROR.ADD_ERROR will not be executed. The method is appropriate for the form validation.
This article presents another way to show the message from the PL/SQL process. We use the Application Item to store the message from the PL/SQL process. There is a Application Process executing on the page loading to show the message in the Application Item using the JS functions in the apex.message namespace.
See the full article: https://hychen39.github.io/oracle_apex/2018/10/17/apex_messages_app_item.html
One way is to use the global variable APEX_APPLICATION.G_PRINT_SUCCESS_MESSAGE. The Apex will shows the message in the upper right corner with the green box. The method is suitable for showing information that doesn’t need the user to interact with.
The second way is to use APEX_ERROR.ADD_ERROR procedure to add the message to the error stack. When loading the page, the Apex will show these messages. We can specify the locations of showing the messages either on the upper right corner or associate with pages items or event an error page. However, the APEX_ERROR.ADD_ERROR procedure will interrupt the request processing process such that the codes after the APEX_ERROR.ADD_ERROR will not be executed. The method is appropriate for the form validation.
This article presents another way to show the message from the PL/SQL process. We use the Application Item to store the message from the PL/SQL process. There is a Application Process executing on the page loading to show the message in the Application Item using the JS functions in the apex.message namespace.
See the full article: https://hychen39.github.io/oracle_apex/2018/10/17/apex_messages_app_item.html
2018年10月5日 星期五
Enhance orclapex maven plugin to use NaturalDocs 2.x to generate pl/sql API documents.
Use the orclapex maven plugin with the NaturalDocs 2.x to generate pl/sql API document.
See https://github.com/hychen39/orclapex-maven-plugin/blob/master/README-1.0.4.md.
See https://github.com/hychen39/orclapex-maven-plugin/blob/master/README-1.0.4.md.
訂閱:
文章 (Atom)