easyui 可编辑datagrid 范例 亲测有效

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"
	contentType="text/html; charset=utf-8"%>
<!DOCTYPE html>
<html>
<head>
<title>测试报表</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css"
	href="../../easyui/themes/default/easyui.css">
<link rel="stylesheet" type="text/css"
	href="../../easyui/themes/icon.css">
<link rel="stylesheet" type="text/css"
	href="../../easyui/themes/color.css">

<script type="text/javascript" src="../../easyui/jquery.min.js"></script>
<script type="text/javascript" src="../../js/jquery-1.7.1.js"></script>
<script type="text/javascript" src="../../easyui/jquery.easyui.min.js"></script>
<script type="text/javascript"
	src="../../easyui/locale/easyui-lang-zh_CN.js"></script>
<script type="text/javascript" src="../../js/print.js"></script>
<style type="text/css">
html,body {
	height: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	font-family: "宋体";
}
</style>
</head>
<body>
 <div>       
     @* 定义table  *@  
     <table id ="dg" class="easyui-datagrid" style="width: auto; height: auto;" title="企业经营管理人才类别情况统计表2" 
     data-options="
     url:'/EnterpriseManagement2/FillData',
     fitColumns:true,
     singleSelect:true,
     pageSize:10,
     iconCls:'icon-edit',
     method:'get',
     onClickCell:onClickCell" ">  
      @*复杂表头的处理,合并单元格*@  
        <thead>                 
            <tr>  
                <th  rowspan="2">项目</th>  
                <th  rowspan="2">合计</th>  
                <th  rowspan="2">女士</th>  
                <th colspan="5">学历</th>  
                <th colspan="6">年龄</th>  
                <th rowspan="2">自主创业</th>  
                <th  rowspan="2">再就业人数</th>  
                <th  rowspan="2">拥有专利人数</th>  
                <th  rowspan="2">拥有执业资格人数</th>            
            </tr>  
            <tr>  
                <th >研究生</th>  
                <th >大学本科</th>  
                <th >大学专科</th>  
                <th >中专</th>  
                <th >高中及以下</th>  
                <th >35岁以下</th>  
                <th >36-40岁</th>  
                <th >41-45岁</th>  
                <th >46-50岁</th>  
                <th >51-54岁</th>  
                <th >55岁以上</th>  
            </tr>  
            <tr>  
                <th data-options="field:'sumID',width:137,align:'center'">甲</th>  
                <th data-options="field:'one',width:70,align:'center',editor:'text'">1</th>  
                <th data-options="field:'two',width:70,align:'center',editor:'text'">2</th>  
                <th data-options="field:'three',width:70,align:'center',editor:'text'">3</th>  
                <th data-options="field:'four',width:70,align:'center',editor:'text'">4</th>  
                <th data-options="field:'five',width:70,align:'center',editor:'text'">5</th>  
                <th data-options="field:'six',width:70,align:'center',editor:'text'">6</th>  
                <th data-options="field:'seven',width:70,align:'center',editor:'text'">7</th>  
                <th data-options="field:'eight',width:70,align:'center',editor:'text'">8</th>  
                <th data-options="field:'night',width:70,align:'center',editor:'text'">9</th>  
                <th data-options="field:'ten',width:70,align:'center',editor:'text'">10</th>  
                <th data-options="field:'eleven',width:70,align:'center',editor:'text'">11</th>  
                <th data-options="field:'twelve',width:70,align:'center',editor:'text'">12</th>  
                <th data-options="field:'thirteen',width:70,align:'center',editor:'text'">13</th>  
                <th data-options="field:'fourteen',width:70,align:'center',editor:'text'">14</th>  
                <th data-options="field:'fifteen',width:70,align:'center',editor:'text'">15</th>  
                <th data-options="field:'sixteen',width:85,align:'center',editor:'text'">16</th>  
                <th data-options="field:'seventeen',width:110,align:'center',editor:'text'">17</th>  
            </tr>            
        </thead>  
        
        <tr>
        	<td data-options="field:'seventeen',width:110,align:'center',editor:'text'" >123</td>
        	<td data-options="field:'seven',width:110,align:'center',editor:'text'" >123</td>
        </tr> 
         <tr>
        	<td data-options="field:'seventeen',width:110,align:'center',editor:'text'" >123</td>
        	<td data-options="field:'seven',width:110,align:'center',editor:'text'" >123</td>
        </tr> 
    </table>  
  
  
  
 @* 可编辑表格单机触发*@  
<script type="text/javascript">  
            $.extend($.fn.datagrid.methods, {  
                editCell: function (jq, param) {  
                    return jq.each(function () {  
                        var opts = $(this).datagrid('options');  
                        var fields = $(this).datagrid('getColumnFields', true).concat($(this).datagrid('getColumnFields'));  
                        for (var i = 0; i < fields.length; i++) {  
                            var col = $(this).datagrid('getColumnOption', fields[i]);  
                            col.editor1 = col.editor;  
                            if (fields[i] != param.field) {  
                                col.editor = null;  
                            }  
                        }  
                        $(this).datagrid('beginEdit', param.index);  
                        for (var i = 0; i < fields.length; i++) {  
                            var col = $(this).datagrid('getColumnOption', fields[i]);  
                            col.editor = col.editor1;  
                        }  
                    });  
                }  
            });  
  
            var editIndex = undefined;  
            function endEditing() {  
                if (editIndex == undefined) { return true }  
                if ($('#dg').datagrid('validateRow', editIndex)) {  
                    $('#dg').datagrid('endEdit', editIndex);  
                    editIndex = undefined;  
                    return true;  
                } else {  
                    return false;  
                }  
            }  
            function onClickCell(index, field) {  
                if (endEditing()) {  
                    $('#dg').datagrid('selectRow', index)  
                            .datagrid('editCell', { index: index, field: field });  
                    editIndex = index;  
                }  
            }  
</script>  
    </div>  
</body>
	
</html>


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值