Dorado 5 : 2.3.4.GroupBox(组对象) (RF2)

简述

用于包含一组同类型的对象,可根据查看需要作收缩或者展开的一个框对象,并可以设置标题信息。 如图:

图表 53

使用

GroupBox的属性设定即可以在视图模型中配置,也可以在JSP中直接加入代码,一般来说都可以在JSP中直接加入代码完成GroupBox的设定:

<d:GroupBox id="groupbox1" title="分组信息1" width="300px" height="100px" showExpandButton="true" expanded="true">
</d:GroupBox>

将相关的组件标签放入GroupBox标签申明的内部即可。 如下:

<d:GroupBox id="groupbox1" title="分组信息1" width="300px" height="100px" showExpandButton="true" expanded="true">
<d:TextEditor id="editor_employeeId" />
<d:TextEditor id="editor_employeeName" />
<d:TextEditor id="editor_sex" />
</d:GroupBox>

主要属性说明

属性

说明

expanded

默认是否处于展开状态

showExpandButton

是否显示可展开收缩的快捷按钮

title

组的标题