jQuery学习笔记--JqGrid相关操作 方法列表 备忘 重点讲解(超重要)

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 22:35 点击:

 

 

JqGrid相关操作备忘 方法列表

 

1.获得当前列表行数:$("#gridid").getGridParam("reccount");

2.获取选中行数据(json):$("#gridid").jqGrid('getRowData', id);

3.刷新列表:$(refreshSelector).jqGrid('setGridParam', { url: ''), postData: ''}).trigger('reloadGrid');

4.选中行:$("#jqGrid").setSelection("1", true);   (Toggles a selection of the row with id = rowid; if onselectrow is true (the default) then the event onSelectRow is launched, otherwise it is not.)//true:重新加载表格数据, false:不重新加载表格数据

5.重置选中行:$("#jqgrid").resetSelection(); //Resets (unselects) the selected row(s). Also works in multiselect mode.

6.清除:$("#jqgrid").clearGridData();   //Clears the currently loaded data from grid. If the clearfooter parameter is set to true, the method clears the data placed on the footer row.

7. $("#jqgrid").setCell(rowid,colname,nData,cssp,attrp);

//This method can change the content of particular cell and can set class or style properties. Where:

rowid the id of the row,

colname the name of the column (this parameter can be a number (the index of the column) beginning from 0

data the content that can be put into the cell. If empty string the content will not be changed

class if class is string then we add a class to the cell using addClass; if class is an array we set the new css properties via css

properties sets the attribute properies of the cell,

forceup If the parameter is set to true we perform update of the cell instead that the value is empty

 

8.获取选中行ID

 var rowid = $("#jqgrid").jqGrid('getGridParam','selrow');

var rowid = $("#searchResultList").getGridParam("selrow");

var rowData = $("#searchResultList").getRowData(rowid); /根据行ID,获取选中行的数据(根据)

 

=================重点讲解================

1.1 prmNames选项

 

prmNames是jqGrid的一个重要选项,用于设置jqGrid将要向Server传递的参数名称。其默认值为:

 

 

 

 

prmNames : { 

    page:"page",    // 表示请求页码的参数名称 

    rows:"rows",    // 表示请求行数的参数名称 

    sort: "sidx", // 表示用于排序的列名的参数名称 

    order: "sord", // 表示采用的排序方式的参数名称 

    search:"_search", // 表示是否是搜索请求的参数名称 

    nd:"nd", // 表示已经发送请求的次数的参数名称 

    id:"id", // 表示当在编辑数据模块中发送数据时,使用的id的名称 

    oper:"oper",    // operation参数名称(我暂时还没用到) 

    editoper:"edit", // 当在edit模式中提交数据时,操作的名称 

    addoper:"add", // 当在add模式中提交数据时,操作的名称 

    deloper:"del", // 当在delete模式中提交数据时,操作的名称 

    subgridid:"id", // 当点击以载入数据到子表时,传递的数据名称 

    npage: null,  

    totalrows:"totalrows" // 表示需从Server得到总共多少行数据的参数名称,参见jqGrid选项中的rowTotal 

 

 

可以通过这个选项来自定义当向Server发送请求时,默认发送的参数名称。

这个参数很重要也很有用,正是通过这个参数,可以方便的改变默认的request的参数,以符合Server端的需要。比如在prmNames中search默认的值为"_search&quo

    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • Gb2312转utf-8编码的方法(vbs+js)
    • 如何使用Ajax技术开发Web应用程序(1)
    • js跳转路径问题
    • JavaScript模仿桌面窗口
    • 用js检测两个线段是否相交
    • 我知道的JavaScript -- 设计模式(桥接)应用之 – 验证器
    • 运用JavaScript构建你的第一个Metro式应用程序(on Windows
    • 我是如何去了解jquery的(六),案例之幻灯片轮换
    • Jquery封装幻灯片效果
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1