Dorado 5 : 2.4.11.PagePilot(翻页导航条) (RF2)

功能

翻页导航条用于dataset的分页数据显示
如下图:

图表 119

使用

在JSP中直接添加PagePilot标签,并设定其绑定的dataset属性,如果已经在View中设置过dataset属性,则在标签申明中就不需要重复定义该属性:

<d:PagePilot id="pagepilot1" dataset="datasetEmployee"/>

属性说明

Dataset是pagePilot必须设定的属性,其它属性的说明如下:

属性

说明

dataset

翻页导航条绑定的dataset对象

maxLink

maxLink是指翻页导航条中连续页的数目。

pilotType

翻页导航条的类型,可选值有:
button
link

showGotoButton

是否显示Goto按钮

showPageInfo

是否显示页信息

maxLink是指翻页导航条中连续页的数目。如果不做设定,默认为10,如下图:

图表 120
如果将maxLink调整为5,则如下图

图表 121
pilotType设定为link图示

图表 122
如果设定为button则图示如:

图表 123
showGotoButton作用图示(用于展示是否显示如下的红色框内的信息):

图表 124
showPageInfo作用图示(用于展示是否显示如下的红色框内的信息):

图表 125

系统css文件为

.PagePilot {
}

.PagePilot .CurrentPageLink {
height: 12;
padding: 1;
color: black;
font-weight: bold;
background-color: #DDEDF9;
border-width: 1;
border-color: #7BB9E6;
border-style: solid;
}

.PagePilot .PageLink {
height: 15;
padding: 1;
cursor: hand;
color: blue;
text-decoration: underline;
background-color: white;
border-width: 1;
border-color: white;
border-style: solid;
}

.PagePilot .VisitedPageLink {
height: 15;
padding: 1;
cursor: hand;
color: purple;
text-decoration: underline;
background-color: white;
border-width: 1;
border-color: white;
border-style: solid;
}

css说明

Class名称

说明

PagePilot

PagePilot的默认风格设定

CurrentPageLink

当前页的风格设定

PageLink

Page链接的风格

VisitedPageLink

已经访问的页的风格设定