-
chenzy 初学数据Lv2
发表于2023-1-5 15:11
楼主
旧式分页条固定在页面最下方只适用单表格,多表格自动使用新式分页条,新式分页条的位置会跟随表格底部而变化,当我们想要将新式分页条固定在页面最底部,可以参考如下方法配置:
在报表自定义样式中加入如下代码
#grid1PageBarDom{/*表格代号小写+PageBarDom*/
width:100% !important;
position:fixed !important;
top:unset !important;
bottom:0px;
height: 35px !important;/*需要在页面下方添加布局块,并且固定行高和此height相同*/
font-size:16px;
color:#fff;
}
#HHH8{/*表格所在布局块代号*/
z-index:1 !important;
}
.smallpage{
text-align: center !important;/*分页显示位置,默认center*/
}
.smallpage .page_go input{
font-size:16px;/*页数字体大小*/
}
在报表自定义样式中加入如下代码
#grid1PageBarDom{/*表格代号小写+PageBarDom*/
width:100% !important;
position:fixed !important;
top:unset !important;
bottom:0px;
height: 35px !important;/*需要在页面下方添加布局块,并且固定行高和此height相同*/
font-size:16px;
color:#fff;
}
#HHH8{/*表格所在布局块代号*/
z-index:1 !important;
}
.smallpage{
text-align: center !important;/*分页显示位置,默认center*/
}
.smallpage .page_go input{
font-size:16px;/*页数字体大小*/
}