动态创建OATipBean

动态创建OATipBean。

动态创建的OATipBean无法直接设置提示内容,需要添加一个静态文本。

参考User Guide示例如下。

If you need to create a tip programmatically, follow these steps:

Step 1: Create a message in the Applications Message Dictionary.

Step 2: Instantiate the tip as shown below. Then, instantiate an oracle.apps.fnd.framework.webui.beans.OAStaticStyledTextBean to hold your tip text and add it as an indexed child of the tip. Note that UIX automatically sets the CSS style to OraTipText on your behalf.

import oracle.apps.fnd.framework.webui.OAWebBeanConstants; import oracle.apps.fnd.framework.webui.beans.OAStaticStyledTextBean;import oracle.apps.fnd.framework.webui.beans.OATipBean;   
... 
public void processRequest(OAPageContext pageContext, OAWebBean webBean)
{
 // Always call this first.
 super.processRequest(pageContext, webBean);

 // Instantiate the tip bean using the factory mechanism (do not use "new").
 OATipBean tip = (OATipBean)createWebBean(pageContext, 
                                          OAWebBeanConstants.TIP_BEAN, 
                                          null,"aName");

 // Instantiate the text portion of the tip.
 OAStaticStyledTextBean tipText = (OAStaticStyledTextBean)createWebBean(pageContext, 
                                          OAWebBeanConstants.STATIC_STYLED_TEXT_BEAN, 
                                          null,"anotherName");

 // Obtain the translated text value from the Applications Message Dictionary // and set it as the text value in the static styled text bean.
 String tipTextValue = pageContext.getMessage("AK", "FWK_TBX_T_TIP_BEAN", null);
 tipText.setText(tipTextValue);

 // Add the tip text to the tip bean.
 tip.addIndexedChildren(tipText);
}
原文地址:https://www.cnblogs.com/huanghongbo/p/5147570.html