修改jqGrid列表样式

修改jqGrid列表样式

  (2011-12-06 10:36:03)
转载
标签: 

jqgrid

 

css

 

it

分类: JQuery

ui.jqgrid.4.2.css文件修改内容如下:

.ui-jqgrid .ui-jqgrid-title {font-size:15px;}   

.ui-jqgrid .ui-jqgrid-sortable {font-size:15px;}     

.ui-jqgrid tr.jqgrow { outline-style: none;font-size:1.3em; } 

.ui-jqgrid .ui-pg-table {position: relative; padding-bottom:2px; margin: 0em;font-size: 16px; width: expression_r(navigator.appVersion.split(";")[1].replace(/[ ]/g,"")=="MSIE6.0" ? "300px" : "auto");}   

 

------------------------------------------------------------------------------------------------------

jquery.jqGrid.src.js(4.2版本)文件修改内容如下:

1583行:$(sppg).html($.fmatter ? $.fmatter.util.NumberFormat(ts.p.lastpage,fmt):ts.p.lastpage);改为

        $(sppg).html($.fmatter ? ts.p.lastpage :ts.p.lastpage);

        //上面的改动解决共N页那个超过千分位数字之间的空格

1591行:if($.fmatter) {
           from = $.fmatter.util.NumberFormat(from,fmt);
           to = $.fmatter.util.NumberFormat(to,fmt);
           tot = $.fmatter.util.NumberFormat(tot,fmt);
        }

        //上面的代码段被注释掉的if语句段解决分页toolbar右下角共N条那个超过千分位数字之间的空格

你可能感兴趣的:(技术)