easy-ui取得选中行数据项

来源:互联网 发布:下载卖装备软件 编辑:程序博客网 时间:2024/05/18 18:04
  • 1.数据网格(datagrid)有两种方法来读取选中行数据:
    1.getSelected:取得第一个选中行数据,如果没有选中行,则返回 null,否则返回记录。
    2.getSelections:取得所有选中行数据,返回元素记录的数组数据。

  • 2.创建表格

<table id="tt" class="easyui-datagrid" style="width:600px;height:250px"        url="data/datagrid_data.json"        title="Load Data" iconCls="icon-save">    <thead>        <tr>            <th field="itemid" width="80">Item ID</th>            <th field="productid" width="80">Product ID</th>            <th field="listprice" width="80" align="right">List Price</th>            <th field="unitcost" width="80" align="right">Unit Cost</th>            <th field="attr1" width="150">Attribute</th>            <th field="status" width="60" align="center">Stauts</th>        </tr>    </thead></table>

pic这里写图片描述
3.1读取选中行某一列数据

var row = $('#tt').datagrid('getSelected');
if (row){
alert('Item ID:'+row.itemid);
}

  • 3.2读取选中行所有列据

    var ids = [];var rows = $('#tt').datagrid('getSelections');    for(var i=0; i<rows.length; i++){        ids.push(rows[i].itemid);    }alert(ids.join(''));

    pic
    这里写图片描述

1 0
原创粉丝点击