OAF_OAF控件系列7 - Tree的实现(案列)

简介: 2014-06-02 Created By BaoXinjian 一、摘要 实现OAF的Tree功能   二、案例 需求:实现OAF的Tree功能     1. 建立两个Page,树结构页面和明细页面       2.

2014-06-02 Created By BaoXinjian

一、摘要


实现OAF的Tree功能

 

二、案例


需求:实现OAF的Tree功能

    1. 建立两个Page,树结构页面和明细页面  

    2. 在树页面中建立Tree,在Tree中建立Node和 Members

        (1). Node的重要属性

            URI:OA.jsp?page=/bxj/oracle/apps/ak/test/webui/TreeDetailPG&employeeId={@EmployeeId}&OAPLRS=PLNH

            Target Frame: OACFr

        (2). Members的重要属性

            URI:/bxj/oracle/apps/ak/test/webui/TreeRootPG.TreeRN

            View Link Instance: ???

            View Link Accessor: DirectReport、

        (3). &OAPLRS=PLNH: 代表了打开的Page无Window Title结构

    3. 建立三个Function

        (1). Function1:设定为Tree Page

            OA.jsp?page=/bxj/oracle/apps/ak/test/webui/TreeRootPG&OAPLRS=PLNH

        (2). Function2: 设定为Detail Page

            OA.jsp?page=/bxj/oracle/apps/ak/test/webui/TreeDetailPG

        (3). Function3: 设定为虚拟,对应Tree&Detail Page

            OAFrame.jsp?OAFunc=FWK_TBX_TREE_CENTERFRAME:FWK_TBX_TREE_STARTFRAME:FWK_TBX_TREE_CENTERFRAME

            &OAHP=FWK_TOOLBOX_TUTORIAL_APP

            &OASF=FWK_TOOLBOX_SAMPLE_BROWSE

            &OAFRDIM=30p:15p

    4. 设定两个CO对应至Page,及代码

    5. 进行测试

 

三、案例实现


1. 设定Root Tree的Node属性

    

 

2. 设定Root Tree的Members属性

    

 

3. 建立Functions

    

 

4. 设定TreeRootCO,进行Tree节点的初始化

1 public void processRequest(OAPageContext pageContext, OAWebBean webBean){
2 
3     super.processRequest(pageContext, webBean);
4 
5     OAApplicationModule am = pageContext.getApplicationModule(webBean);
6 
7     am.invokeMethod("initTreeQuery");
8 
9 }

 

5. 设定TreeDetailCO,进行Detail页面的初始化

 1 public void processRequest(OAPageContext pageContext, OAWebBean webBean){
 2 
 3     super.processRequest(pageContext, webBean);
 4 
 5     OAPageLayoutBean pageLayout = pageContext.getPageLayoutBean();
 6 
 7     pageLayout.prepareForRendering(pageContext);
 8 
 9     UINode tabBar = pageLayout.getTabs();
10 
11     int childCount = 0;
12 
13     if( tabBar != null ) {
14 
15         childCount = tabBar.getIndexedChildCount(pageContext.getRenderingContext());
16 
17     }
18 
19     for( int i=0; i<childCount; i++){
20 
21         LinkBean child = (LinkBean) tabBar.getIndexedChild(pageContext.getRenderingContext(), i);
22 
23         if( child != null ) {
24 
25             child.setTargetFrame("_top");
26 
27         }
28 
29     }
30 
31     OAApplicationModule am = pageContext.getApplicationModule(webBean);
32 
33     String employeeId = pageContext.getParameter("employeeId");
34 
35     Serializable[] parameters = { employeeId };
36 
37     am.invokeMethod("initDetails", parameters);
38 
39 }

 

四、案例测试


  

 

Thanks and Regards         

 

ERP技术讨论群: 288307890
技术交流,技术讨论,欢迎加入
Technology Blog Created By Oracle ERP - 鲍新建
相关文章
|
Oracle 关系型数据库
OAF_开发系列20_实现OAF打印功能
ddddd   添加一个页面级的button区域:pagebuttonBar,在之下添加button item ,这里主要设置的参数有:采用默认的oaf的打印按钮的id名称: IcxPrintablePageButton,设置属性集为:/oracle/apps/fnd/attributesets...
1195 0
|
Oracle 关系型数据库
OAF_开发系列18_实现OAF页面跳转setForwardURL / forwardImmediately(案例)
20150716 Created By BaoXinjian 一、摘要 setForwardURL()与forwardImmediately() 1. forwardImmediately会停止当前页面的请求,直接跳转到新的页面; 2.
1566 0
|
关系型数据库 Oracle
OAF_开发系列14_实现OAF代码动态新增控件
dERP技术讨论群: 288307890 技术交流,技术讨论,欢迎加入 Technology Blog Created By Oracle ERP - 鲍新建
1129 0
|
移动开发 关系型数据库 容器
OAF_开发系列08_实现OAF通过Popup参数式弹出窗口(案例)
20150711 Created By BaoXinjian 一、摘要 参数式弹出窗口和嵌入式弹出窗口不一样,它拥有独立的区域,并不嵌入到使用页面中。 它里面的内容根据需要来获取和生成,它拥有自己的AM和页面状态,对popup页面事件的处理也不一样。
1697 0
OAF_开发系列11_实现OAF通过DataBoundValues动态显示表列的左右对齐
20150712 Created By BaoXinjian 一、摘要 在OAF中除了Required, Rendered,Disabled, 和 Read Only这些属性可以通过属性面板用SPEL语言来进行声明式实现。
811 0
|
关系型数据库 测试技术
OAF_OAF控件系列4 - HGrid的实现(案列)
2014-06-02 Created By BaoXinjian 一、摘要 实现OAF的HGrid的功能   二、案例 需求:实现OAF的HGrid的功能 1. 建立HGrid Regin 2.
889 0
|
关系型数据库
OAF_OAF控件系列3 - Poplist的实现(案例)
2014-06-02 Created By BaoXinjian 一、摘要 实现OAF的Poplist功能   二、案例 需求:实现OAF Poplist功能 1. 建立VO,存放Invoice Type的资料 2.
850 0
|
测试技术 数据库
OAF_OAF控件系列3 - AdvancedTable的实现(案例)
2014-06-02 Created By BaoXinjian 一、摘要 实现控件AdvancedTable功能   二、 案例 需求:实现控件AdvancedTable功能 1.AdvancedTable下的插件     (1).
1834 0