wzp
2021-07-19 e65183d31755a0e5fae4bf428435d2e0fd6afdc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title>Advanced Edit Grid</title>
    <!-- grid.all.min.css, grid.all.min.js -->
    <link rel="stylesheet" href="../../builds/merged/bsgrid.all.min.css"/>
    <script type="text/javascript" src="../../plugins/jquery-1.4.4.min.js"></script>
    <script type="text/javascript" src="../../builds/js/lang/grid.zh-CN.min.js"></script>
    <script type="text/javascript" src="../../builds/merged/bsgrid.all.min.js"></script>
</head>
<body style="background-color: #fff;">
<p />
<input type="button" value="Get Checked Ids" onclick="getCheckedIds()"  />
&emsp;
<input type="button" value="Active Grid Edit mode" onclick="gridObj.activeGridEditMode()"  />
&emsp;
<input type="button" value="Get Changed Rows Number" onclick="alert(gridObj.getChangedRowsIndexs().length)"  />
&emsp;
<input type="button" value="Get Changed Rows Indexs" onclick="alert(gridObj.getChangedRowsIndexs().toString())"  />
&emsp;
<input type="button" value="Get Changed Ids" onclick="getChangedIds()"  />
&emsp;
<input type="button" value="Get Rows Changed Columns value" onclick="getRowsChangedColumnsValue()"  />
&emsp;
 
<p />
<input type="button" value="Delete Row 0" onclick="gridObj.deleteRow(0)"  />
&emsp;
<input type="button" value="Add New Edit Row" onclick="gridObj.addNewEditRow()"  />
<p />
<table id="searchTable">
    <tr>
        <th w_check="true" width="3%;"></th>
        <th w_edit="text" w_index="XH" width="5%;">XH</th>
        <th w_edit="select" w_index="ID" width="5%;">ID</th>
        <th w_edit="text" w_index="CHAR" w_align="left" width="15%;">CHAR</th>
        <th w_edit="textarea" w_index="TEXT" w_align="left" width="27%;">TEXT</th>
        <th w_index="DATE" width="15%;">DATE</th>
        <th w_index="TIME" width="15%;">TIME</th>
        <th w_index="NUM" width="5%;">NUM</th>
        <th w_render="operate" width="10%;">Operate</th>
    </tr>
</table>
<script type="text/javascript">
    var gridObj;
    $(function () {
        gridObj = $.fn.bsgrid.init('searchTable', {
            //autoLoad: false,
            url: 'data/json.jsp',
            pageSizeSelect: true,
            pageSize: 10,
            extend: {
                settings: {
                    supportGridEdit: true, // default false, if support extend grid edit
                    supportGridEditTriggerEvent: 'rowClick', // default 'rowClick', values: ''(means no need Trigger), 'rowClick', 'rowDoubleClick', 'cellClick', 'cellDoubleClick'
                    gridEditConfigs: {
                        select: {
                            build: function (edit, value, record, rowIndex, colIndex, tdObj, trObj, options) {
                                return value + '<select class="' + 'bsgrid_editgrid_edit">'
                                        + '<option value="">No Match</option>'
                                        + '<option value="100"' + (value == '100' ? ' selected' : '') + '>100</option>'
                                        + '<option value="99"' + (value == '99' ? ' selected' : '') + '>99</option>'
                                        + '<option value="98"' + (value == '98' ? ' selected' : '') + '>98</option>'
                                        + '<option value="97"' + (value == '97' ? ' selected' : '') + '>97</option>'
                                        + '</select>';
                            },
                            val: function (formObj) {
                                return formObj.val();
                            }
                        }
                    }
                }
            }
        });
    });
 
    function getCheckedIds() {
        var records = gridObj.getCheckedRowsRecords();
        var ids = '';
        for(var i = 0; i < records.length; i++) {
            ids += ',' + gridObj.getRecordIndexValue(records[i], 'ID');
        }
        alert(ids.length > 0 ? ids.substring(1) : '');
    }
 
    function getChangedIds() {
        var records = gridObj.getChangedRowsOldRecords();
        var ids = '';
        for(var i = 0; i < records.length; i++) {
            ids += ',' + gridObj.getRecordIndexValue(records[i], 'ID');
        }
        alert(ids.length > 0 ? ids.substring(1) : '');
    }
 
    function getRowsChangedColumnsValue() {
        var valsStr = '';
        $.each(gridObj.getRowsChangedColumnsValue(), function (key, object) {
            valsStr += '\n' + key + ' [';
            var cvalsStr = '';
            $.each(object, function (ckey, cvalue) {
                cvalsStr += ', ' + ckey + ': ' + cvalue;
            });
            valsStr += cvalsStr.substring(2) + ']';
        });
        alert(valsStr.length > 0 ? valsStr.substring(1) : '');
    }
 
    function operate(record, rowIndex, colIndex, options) {
        return '<a href="#" onclick="alert(\'ID=' + gridObj.getRecordIndexValue(record, 'ID') + '\');">Operate</a>';
    }
</script>
</body>
</html>