免费的 jqgrid 顶部工具栏包含许多按钮、选择元素和分页器,没有最后一页按钮。按钮被包装成多行。使用删除中心部分
#grid_toppager_center {
width: 0;
}
由于寻呼机位于右侧区域,因此寻呼机下方和之后有很多未使用的空白空间:
我尝试使用删除空白空间
#grid_toppager_center, #grid_toppager_right {
width: 0;
}
和
pagerpos: 'left',
在这种情况下,寻呼机出现在工具栏按钮的顶部:
如何将寻呼机放置到其他地方,例如顶部工具栏的末尾?
jqgrid设置:
$.extend($.jgrid.defaults, {
iconSet: "fontAwesome" ,
autoResizing: { compact: true,widthOfVisiblePartOfSortIcon: 13 },
toppager: true,
viewrecords: false,
pagerpos: 'left',
rowList: [50, 500, 1000],
rowNum: 50,
风格:
#grid_toppager_center, #grid_toppager_right {
width: 0;
}
.ui-pg-button-text {
margin: 4px !important;
}
.ui-jqgrid .ui-jqgrid-toppager .ui-pg-div > span {
margin: 0 5px;
font-size: 20px;
}
.ui-jqgrid .ui-pg-table .ui-pg-button.ui-state-active {
margin: 1px;
font-weight: normal;
}
更新
我尝试了演示
http://www.ok-soft-gmbh.com/jqGrid/OK/tougleButton1_iconOver2.htm
并减少 jqgrid 宽度。
仍然出现空白:
如何将按钮放在该区域,以便它们使用整个网格宽度并包裹尽可能多的行 nessecary ?在应该是寻呼机的按钮之后。
所需的是占用尽可能少的行的紧凑工具栏(此示例中删除了最后两个按钮):