easyui datagrid checkbox选中事件

$(‘#grid_Order‘).datagrid({
       onCheck: function(index, data) { //alert(data[0]);
               //alert(index );
               $("#ChangeCore_order_id").html(data[0]);//赋值 赋安装工单id 换芯 维修 用
               $("#Repair_order_id").html(data[0]);//alert($("#ChangeCore_order_id").html());
               $("#order_install_id").val(data[0]);//
        }
});

<table id="grid_Order" class=‘easyui-datagrid‘ style=‘width:1000px;‘ url=‘Ajax-index.php?module=CallIn&action=Ajax_GridView_Select_Order‘
title=‘已购机器‘ iconCls=‘icon-table‘ rownumbers=‘true‘ fitColumns=‘false‘ singleSelect=‘true‘ >
<thead>
<tr> 

<th data-options="field:‘ck‘,checkbox:true"></th>

<th field=‘contact_name‘ width=‘80‘align=‘center‘>姓名</th>
<th field=‘contact_callerid‘ width=‘120‘align=‘center‘ >电话号码</th>
<th field=‘date_entered‘ width=‘140‘align=‘center‘>创建时间</th> 

<th field=‘contact_address‘ width=‘160‘ align=‘center‘ >地址</th>
<th field=‘description‘ width=‘160‘ align=‘center‘>描述</th>
<th field=‘assigned_user_name‘ width=‘80‘ align=‘center‘>创建人员</th>
</tr>
</thead>
</table>

原文地址:https://www.cnblogs.com/hailexuexi/p/8352111.html

时间: 2024-11-08 03:26:17

easyui datagrid checkbox选中事件的相关文章

easyui datagrid checkbox multiple columns have been done do

lengku1987 2013-01-06 22:27:47 Sponsored Links easyui datagrid checkbox multiple columns have been done do? it is not possible to do ah. Sponsored Links xuan0751 2013-01-06 23:07:28 multiple columns with checkbox? jerryflex 2013-01-06 23:28:34 ah how

jQuery easyui dataGrid checkbox反显的值取不到

  使用jQuery easyui dataGrid checkbox反显后通过      var arr = $('#butnSource').datagrid( 'getSelections'); var arr1 = $('#butnSource' ).datagrid('getSelected');   通过以上的方法取不到反显的值. 解决方案 :                        $( '#butnSource').datagrid({ url : 'sourceActio

JQuery/JS插件 jsTree checkbox选中事件 和 节点选中事件 分离版

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> </head> <body> <div id="plugins1"></div> <link href="dist/themes/default/style.min.css" rel

jQuery EasyUI DataGrid Checkbox

转自:http://blog.csdn.net/baronyang/article/details/9323463 这一篇将会说明两种使用 jQuery EasyUI DataGrid 的 Checkbox 设定方式,以及在既有数据下将 checked 为 true 的该笔数据列的 Checkbox 设定为 Checked,另外就是两种 Checkbox 设定方式下如何取得有勾选的数据. 有关 jQuery EasyUI DataGrid 的相关资料,可以前往官网查看, jQuery EasyU

easyui datagrid checkbox的相关属性整理

DataGrid其中与选择,勾选相关 DataGrid属性: singleSelect boolean 如果为true,则只允许选择一行. false ctrlSelect boolean 在启用多行选择的时候允许使用Ctrl键+鼠标点击的方式进行多选操作.(该属性自1.3.6版开始可用) checkOnSelect boolean 如果为true,当用户点击行的时候该复选框就会被选中或取消选中.如果为false,当用户仅在点击该复选框的时候才会呗选中或取消.(该属性自1.3版开始可用) tru

EasyUI——DataGrid的onClickRow事件

在做高校云平台系统的评教子系统时,学生端有点击超链接实现跳转并传值到指定界面的功能.超链接实现起来并不复杂,但是考虑到学生操作起来的人性化设计,于是把超链接改为单机该行任意地方都可以达到单击超链接的效果,也就是能跳转到指定界面并传值. 通过查看帮助文档,找到了onClickRow事件,在用户点击一行的时候触发,参数包括: rowIndex:点击的行的索引值,该索引值从0开始. rowData:对应于点击行的记录. 我们可以通过rowData取到想要传递的值,然后将页面跳转到指定链接,js代码如下

jQuery EasyUI DataGrid Checkbox 数据设定与取值

$('#dg').datagrid({ title: 'CheckBox Selection on DataGrid', url: 'datagrid_data3.json', width: '700', rownumbers: true, columns:[[ { field:'ck',checkbox:true }, { field: 'productid', title: 'productid' }, { field: 'productname', title: 'productname'

easyui datagrid editor onBeforeEdit事件下使用getEditor和getEditors失效

我在使用onClickRow: function(rowIndex,rowData){                    if(editRow!=-1){                        reportgrid.datagrid('validateRow');                        reportgrid.datagrid('endEdit',editRow);                    } reportgrid.datagrid('beginE

复选框 checkbox 选中事件

项目中用的jquery-1.11 今天需要检测一个checkbox的选中状态,想当然的用 .attr("checked") ,结果发现,无论是否选中,这个值都是 undefined 未定义. 折腾了半天,发现:As of jQuery 1.6, the .attr() method returns undefined for attributes that have not been set. In addition, .attr() should not be used on pla