zoukankan      html  css  js  c++  java
  • 动态创建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);
    }
  • 相关阅读:
    Python模块之re模块
    Python-正则
    Python算法之二分查找法
    Python函数之递归函数
    Python练习题
    Python函数之匿名函数
    PHP iconv 解决utf-8和gb2312编码转换问题
    IE Firefox 中ZIndex的高低准则
    由于您和其他用户试图同时改变同一数据,导致 Microsoft Jet 数据库引擎停止进程解决办法
    Image MagicK 速查
  • 原文地址:https://www.cnblogs.com/huanghongbo/p/5147570.html
Copyright © 2011-2022 走看看