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);
    }
  • 相关阅读:
    HTML5 文件上传
    Vue-Router模式、钩子
    网络基础协议随笔
    Vue-Router基础使用
    vue中mixin的一点理解
    纯css3跑马灯demo
    Charles使用笔记
    提个醒。。。
    本机未装Oracle数据库时Navicat for Oracle 报错:Cannot create oci environment 原因分析及解决方案
    easyUI datagrid 清空
  • 原文地址:https://www.cnblogs.com/huanghongbo/p/5147570.html
Copyright © 2011-2022 走看看