jquery easyui的全选
</table><tableid="dg"class="easyui-datagrid"width="100%"style="height:470px"url="<@ap...
</table>
<table id="dg" class="easyui-datagrid" width="100%" style="height:470px"
url="<@app.url href="mgr/lottery/list.shtml"/>"
toolbar="#toolbar" rownumbers="true"
fitColumns="true" singleSelect="true" pagination="true">
<thead>
<tr>
<th data-options="field:'ck',checkbox:true" width="100%"></th>
<th field="topic" align="center" width="100%">主题</th>
<th field="item" align="center" width="100%">奖项</th>
<th field="rate" align="center" width="100%">中奖率</th>
<th field="count" align="center" width="100%">数量</th>
</tr>
</thead>
帮写个全选,,,多选跟全选删除 展开
<table id="dg" class="easyui-datagrid" width="100%" style="height:470px"
url="<@app.url href="mgr/lottery/list.shtml"/>"
toolbar="#toolbar" rownumbers="true"
fitColumns="true" singleSelect="true" pagination="true">
<thead>
<tr>
<th data-options="field:'ck',checkbox:true" width="100%"></th>
<th field="topic" align="center" width="100%">主题</th>
<th field="item" align="center" width="100%">奖项</th>
<th field="rate" align="center" width="100%">中奖率</th>
<th field="count" align="center" width="100%">数量</th>
</tr>
</thead>
帮写个全选,,,多选跟全选删除 展开
展开全部
参考:http://www.zi-han.net/case/easyui/datagrid&tree.html#datagrid
或者是
其中有查看源代码,里面就有关于常见的GridView的操作,也包含全选
$('#dg').datagrid({
title:'My DataGrid',
conCls:'icon-save',
width:700,
height:350,
frozenColumns:[
{field:'ck',checkbox:true},//添加一个check全选
{field:'id',title:'id',width:100,align:'center'}//唯一标识ID
]
。。。。。。。
})
至于删除,其实你的每个数据都有ID等唯一标识把,通过获取选中行,在获取选中行的ID在删除
function delSelected(){
var selected = $('#dg').datagrid('getSelected');
if (selected){
for(var i=0;i<selected.length;i++)
{
var id=selected[i].id;
//根据ID删除数据
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询