标签:highlight jquery插件 cannot 显示 top 更换 配置 rownumber 元素
<link type="text/css" rel="stylesheet" href="jqGrid/themes/cupertino/jquery-ui-1.9.0.custom.min.css"> <link type="text/css" rel="stylesheet" href="jqGrid/themes/ui.jqgrid.css">
<script type="text/javascript" src="jquery-1.8.2.min.js" /> <script type="text/javascript" src="jqGrid/js/jquery-ui-1.9.0.custom.min.js"/> <script type="text/javascript" src="jqGrid/js/i18n/grid.locale-cn.js"/> <script type="text/javascript" src="jqGrid/js/jquery.jqGrid.min.js"/>
<!-- jqGrid table list4 --> <table id="list4"></table> <!-- jqGrid 分页 div gridPager --> <div id="gridPager"></div>
$(document).ready(function(){ $("#list4").jqGrid({ url:contextPath + "search.action", datatype:"json", //数据来源,本地数据 mtype:"POST",//提交方式 height:420,//高度,表格高度。可为数值、百分比或‘auto‘ //width:1000,//这个宽度不能为百分比 autowidth:true,//自动宽 colNames:[‘添加日期‘, ‘手机号码‘, ‘银行卡号‘,‘备注‘,‘操作‘], colModel:[ //{name:‘id‘,index:‘id‘, width:‘10%‘, align:‘center‘ }, {name:‘createDate‘,index:‘createDate‘, width:‘20%‘,align:‘center‘}, {name:‘phoneNo‘,index:‘phoneNo‘, width:‘15%‘,align:‘center‘}, {name:‘cardNo‘,index:‘cardNo‘, width:‘20%‘, align:"center"}, {name:‘remark‘,index:‘remark‘, width:‘35%‘, align:"left", sortable:false}, {name:‘del‘,index:‘del‘, width:‘10%‘,align:"center", sortable:false} ], rownumbers:true,//添加左侧行号 //altRows:true,//设置为交替行表格,默认为false //sortname:‘createDate‘, //sortorder:‘asc‘, viewrecords: true,//是否在浏览导航栏显示记录总数 rowNum:15,//每页显示记录数 rowList:[15,20,25],//用于改变显示行数的下拉列表框的元素数组。 jsonReader:{ id: "blackId",//设置返回参数中,表格ID的名字为blackId repeatitems : false }, pager:$(‘#gridPager‘) }); });
本节介绍jqGrid其他的使用方法,主要是一些基本操作,特殊的数据显示等。
$("#search_btn").click(function(){ //此处可以添加对查询数据的合法验证 var orderId = $("#orderId").val(); $("#list4").jqGrid(‘setGridParam‘,{ datatype:‘json‘, postData:{‘orderId‘:orderId}, //发送数据 page:1 }).trigger("reloadGrid"); //重新载入 });
① setGridParam用于设置jqGrid的options选项。返回jqGrid对象
② datatype为指定发送数据的格式;
③ postData为发送请求的数据,以key:value的形式发送,多个参数可以以逗号”,”间隔;
④ page为指定查询结果跳转到第一页;
⑤ trigger(“reloadGrid”);为重新载入jqGrid表格。
loadComplete: function() {//如果数据不存在,提示信息 var rowNum = $("#list4").jqGrid(‘getGridParam‘,‘records‘); if (rowNum if($("#norecords").html() == null){ $("#list4").parent().append("</pre> <div id="norecords">没有查询记录!</div> <pre>"); } $("#norecords").show(); }else{//如果存在记录,则隐藏提示信息。 $("#norecords").hide(); } }
① loadComplete 为jqGrid加载完成,执行的方法;
② getGridParam这个方法用来获得jqGrid的选项值。它具有一个可选参数name,name即代表着jqGrid的选项名,如果不传入name参数,则会返回jqGrid整个选项options。例:
$("#list4").jqGrid(‘getGridParam‘,‘records‘);//获取当前jqGrid的总记录数;
$("#list4").jqGrid({ ...... colModel:[ {name:‘productName‘,index:‘productName‘,align:‘center‘,sortable:false}, {name:‘productAmt‘,index:‘productAmt‘, align:‘center‘} ], footerrow: true,//分页上添加一行,用于显示统计信息 ...... pager:$(‘#gridPager‘), gridComplete: function() {//当表格所有数据都加载完成,处理统计行数据 var rowNum = $(this).jqGrid(‘getGridParam‘,‘records‘); if(rowNum > 0){ var options = { url: "test.action",// 默认是form的action,如果写的话,会覆盖from的action. dataType: "json",// ‘xml‘, ‘script‘, or ‘json‘ (接受服务端返回的类型.) type: "POST", success: function(data){//成功后调用方法 $("#list4").footerData("set",{productName:"合计",productAmt:data.productAmtSum}); } }; $("#searchForm").ajaxSubmit(options); } } });
3.1jqGrid的options配置; 需要在jqGrid的options中添加如下属性:
footerrow: true,//分页上添加一行,用于显示统计信息
3.2 调用gridComplete方法,当数据加载完成后,处理统计行数据; 3.3调用jqGrid的footerData方法,为统计行赋值:
$("#list4").footerData("set",{productName:"合计",productAmt:data.productAmtSum});
jQuery("#jqGrid_id").jqGrid({ ... colModel: [ ... {name:‘price‘, index:‘price‘, formatter:‘integer‘, formatoptions:{thousandsSeparator: ‘,‘}}, ... ] ... });
colModel:[ {name:‘id‘, index:‘id‘, formatter: customFmatter}, {name:‘name‘, index:‘name‘, formatter: "showlink", formatoptions:{baseLinkUrl:"save.action",idName: "id", addParam:"&name=123"}}, {name:‘price‘, index:‘price‘, formatter: "currency", formatoptions: {thousandsSeparator:",",decimalSeparator:".", prefix:"$"}}, {name:‘email‘, index:‘email‘, formatter: "email"}, {name:‘amount‘, index:‘amount‘, formatter: "number", formatoptions: {thousandsSeparator:",", defaulValue:"",decimalPlaces:3}}, {name:‘gender‘, index:‘gender‘, formatter: "checkbox",formatoptions:{disabled:false}}, {name:‘type‘, index:‘type‘, formatter: "select", editoptions:{value:"0:无效;1:正常;2:未知"}} ]
其中customFmatter声明如下:
function customFmatter(cellvalue, options, rowObject){ console.log(cellvalue); console.log(options); console.log(rowObject); return "["+cellvalue+"]"; };
function customFmatter(cellvalue, options, rowObject){ } //cellvalue - 当前cell的值 //options - 该cell的options设置,包括{rowId, colModel,pos,gid} //rowObject - 当前cell所在row的值,如{ id=1, name="name1", price=123.1, ...}
当然对于自定义formatter,在修改时需要获取原来的值,这里就提供了unformat函数,这里见官网的例子:
jQuery("#grid_id").jqGrid({ ... colModel: [ ... {name:‘price‘, index:‘price‘, width:60, align:"center", editable: true, formatter:imageFormat, unformat:imageUnFormat}, ... ] ... }); function imageFormat( cellvalue, options, rowObject ){ return ‘</pre> <img src="‘+cellvalue+‘" /> <pre>‘; } function imageUnFormat( cellvalue, options, cell){ return $(‘img‘, cell).attr(‘src‘); }
Uncaught TypeError: Cannot read property ‘integer’ of undefined
SCRIPT5007: 无法获取属性“integer”的值: 对象为 null 或未定义
出现这样的问题,是由于页面没有添加语言文件的引用导致的
解决办法为:添加语言文件js
<script type="text/javascript" src="js/i18n/grid.locale-cn.js"></script>
标签:highlight jquery插件 cannot 显示 top 更换 配置 rownumber 元素
原文地址:http://www.cnblogs.com/zjITgrow/p/6081208.html