OAF_OAF控件系列1 - Region Type汇总(概念)
2014-06-22 Created By BaoXinjian
1. pageLayout Region:
PageLayout region is the highest level layout. By default this the top most region for every page.
Any numbe regions can be created under the pagelayout region.
The java bean associated with this region is OAPageLayoutBean.
2. messageComponentLayout Region:
MessageComponentLayout is a very common region style used which contains all the items starting with message.
For example messageTextInput,messageStyledText etc.
This region can have only these kind of items.The items can be displayed in columns.
The java bean associated is OAMessageComponentLayoutBean.
3. query Bean:
Query bean as the name suggests is used when you do any search. It has different panels like simple search,advanced search etc.
The results are mostly rendered using a table or a hgrid.
The different mode in the query region are Results based search and auto customization criteria.
The java bean associated is OAQueryBean.
4. hideShow Region:
In a page if you want to hide and show the items or regions you can set the top region’s style to hideShow.
By using this you can hide or show a part of the information or the entire section.
The java bean associated is OADefaultHideShowBean.
5. switcher Region:
The switcher region is used at runtime to decide which item needs to be rendered.
It is always bound to an attribute in VO. A view instance and view attribute is specified with switcher.
The java bean associated is OASwitcherBean.
6. defaultSingleColumn Region:
The defaultSingleColumn as the name suggest is used for holding the items in
a single column.
The java bean associated is OADefaultSingleColumnBean.
7. defaultDoubleColumn Region:
The defaultSingleColumn as the name suggest is used for holding the items in
a single column.
The java bean associated is
OADefaultDoubleColumnBean.
8. pageButtonBar Region:
When ever any item is be created at a page layout level we use the
pageButtonBar region.
It is the child of pageLayout level.The items create under
this region will be displayed at the bottom(below footer) and top of the
page(below page title).
The java bean associated is OApageButtonBarBean.
9. rowLayout Region:
The rowLayout region is used when
you want to hold a cell format inside as a child to it.
It can be a independent
region or a child or a tablelayout or advancedTable.
The java bean associated
is OARowLayoutBean.
10. table Region:
As the name suggest table is used for displaying data in a tabular
format.
It supports single and multiple selection.
The java bean associated is
OATableBean.
11. flowLayout Region:
When you want to display table actions for a table or advancedTable you can
create a flowLayout.
Mainly it is for buttons we use this layout.
The java bean
associated is OAFlowLayoutBean.
12. hGrid Region:
When the data needs to be displayed in a hierarchial structure the hGrid
region is used.
Detailed information for each row or node can also be given. T
he
java bean associated is OAHGridBean.
13. train Region:
When you have multiple pages then we use the train to show the progress.
A
highlighed mark shows the current page which you are in.
The java bean
associated is OATrainBean.
1. SingeDefaultColumn
2. SingeDefaultColumn
3. messageComlumnLayout
4. HGrid
5. SubTabs
6. Train
Thanks and Regards
												
OAF_OAF控件系列1 - Region Type汇总(概念)的更多相关文章
- OAF_OAF控件系列10 - Key Flexfield键值弹性域的实现(案例)
		2014-06-17 Created By BaoXinjian 
- OAF_OAF控件系列9 - Description Flexfiled描述性弹性域的实现(案例)
		2014-06-17 Created By BaoXinjian 
- OAF_OAF控件系列3 - AdvancedTable的实现(案例)
		2014-06-02 Created By BaoXinjian 
- OAF_OAF控件系列8 - SubTab的实现(案例)
		2014-06-02 Created By BaoXinjian 
- OAF_OAF控件系列5 - Train的实现(案例)
		2014-06-02 Created By BaoXinjian 
- OAF_OAF控件系列3 - Poplist的实现(案例)
		2014-06-02 Created By BaoXinjian 
- OAF_OAF控件系列2 - LOV的实现(案例)
		2014-06-02 Created By BaoXinjian 
- OAF_OAF控件系列7 - Tree的实现(案列)
		2014-06-02 Created By BaoXinjian 
- OAF_OAF控件系列4 - HGrid的实现(案列)
		2014-06-02 Created By BaoXinjian 
随机推荐
- go语言基础之init函数的介绍
			1.init函数的介绍 示例: 文件夹目录如下: 源代码: vi main.go //程序入口 package main //必须 import ( "calc" " ... 
- iOS开发-Interface Builder的前世今生
			Interface Builder,是用于苹果公司Mac OS X操作系统的软件开发程序,Xcode套件的一部分,于1988年创立.它的创造者Jean-Marie Hullot自称是“一个热爱旅行.充 ... 
- maven 将jar 下载到工程当前目录下
			在 pom.xml 的目录下,运行cmd命令 : call mvn -f pom.xml dependency:copy-dependencies 然后在同一目录下出现文件夹target,内容就是ja ... 
- Android之PowerManager&BatteryManager
			PowerManager是Android平台中用于管理控制设备电源状态.重启.休眠状态.唤醒等,使用该API会影响到电池的待机时间,所以无非必要,一般不要使用. 在PowerManager中有几个比较 ... 
- go语言string、int、int64互相转换
			#string到int int,err:=strconv.Atoi(string) #string到int64 int64, err := strconv.ParseInt(string, 10, 6 ... 
- 自适应图片宽度的jQuery焦点幻灯轮播代码
			自适应图片宽度的jQuery焦点幻灯轮播代码 注意要1.7.2版本的jq才支持点击后显示点击的图片,不然就是一直顺序播放 演示 XML/HTML Code <div id="sli ... 
- 用C语言获取任意文件的长度(可能大于2GB)
			用C语言获取文件长度的常见思路是: 打开文件后用 fseek() 函数把文件位置指针移动到文件的末尾,用 ftell() 获得这时位置指针距文件头的字节数,这个字节数就是文件的长度.但是这样做也会受到 ... 
- Unity3d---> IEnumerator
			Unity3d---> IEnumerator 2013-04-18 10:24 2162人阅读 评论(0) 收藏 举报 Unity3dc# using UnityEngine; using S ... 
- (LeetCode 153)Find Minimum in Rotated Sorted Array
			Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 migh ... 
- redis 配置步骤
			1.下载 2.启动 3.持久化(快照和AOF) 4.主从配置(集群) 5.读写分离 6.自动切换主从 7.哨兵服务(集群) 8.集群锁 9.Session共享 
