如何更改寻呼机 jqgrid 字体大小?
How to change pager jqgrid font size?
我想更改 table 中显示记录数的字体。
(View 1 - 10 of 13)--> 那个字体特别
如果你想改变整个文本的 CSS View 1 - 10 of 13
你应该用你自己的
覆盖 jqGrid 默认值 CSS
.ui-paging-info{
font-size: 20px;
}
见working example here
但是,如果您只想更改数字的 CSS 13
,那么您应该添加一个 jqGrid 属性 以使用
指定视图记录格式]
recordtext: "View {0} - {1} of <span style=' font-size: 20px;'>{2}</span>",
见working example here
希望这就是你想要的。
我想更改 table 中显示记录数的字体。 (View 1 - 10 of 13)--> 那个字体特别
如果你想改变整个文本的 CSS View 1 - 10 of 13
你应该用你自己的
.ui-paging-info{
font-size: 20px;
}
见working example here
但是,如果您只想更改数字的 CSS 13
,那么您应该添加一个 jqGrid 属性 以使用
recordtext: "View {0} - {1} of <span style=' font-size: 20px;'>{2}</span>",
见working example here
希望这就是你想要的。