nnnjjj123
2020-11-17 1b2c1edb61190eeb19f465ff031eaa3b2a1b8dbc
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Test Pagination Extension</title>
        <meta name="viewport" content="width=570">
        <style>
            @import "../../../dojo/resources/dojo.css";
            @import "../../css/dgrid.css";
            @import "../../css/skins/claro.css";
            .heading {
                font-weight: bold;
                padding-bottom: 0.25em;
            }
            .dgrid {
                width: 750px;
                margin: 10px;
            }
 
            #grid2 .dgrid-row {
                height: 22px;
            }
            #grid2 .dgrid-cell {
                text-overflow: ellipsis;
                white-space: nowrap;
            }
 
            /* styles for columnset grid */
            #gridColumnSet .dgrid-cell {
                width: 100px;
            }
            #gridColumnSet .field-col4 {
                width: 20em;
            }
        </style>
        <script src="../../../dojo/dojo.js"
            data-dojo-config="async: true"></script>
        <script>
            require(["dgrid/Grid", "dgrid/extensions/Pagination",
                    "dgrid/Selection", "dgrid/Keyboard", "dgrid/ColumnSet", "dgrid/GridFromHtml",
                    "dojo/_base/lang", "dojo/_base/declare", "dojo/on", "dojo/dom-construct", "dojo/dom-form",
                    "dgrid/test/data/errorStores", "dgrid/test/data/testStore", "dgrid/test/data/createSyncStore",
                    "dgrid/test/data/createAsyncStore", "dgrid/test/data/genericData",
                    "dojo/domReady!"],
                function(
                    Grid, Pagination, Selection, Keyboard, ColumnSet, GridFromHtml,
                    lang, declare, on, domConstruct, domForm, errorStores, testStore,
                    createSyncStore, createAsyncStore, genericData
                ){
 
                    window.errorStores = errorStores; // for easy access by button handlers
                    window.testStore = testStore;
                    window.testAsyncStore = createAsyncStore({ data: genericData });
                    window.emptyAsyncStore = createAsyncStore();
 
                    var CustomGrid = declare([Grid, Keyboard, Selection, Pagination]);
 
                    getColumns = function(){
                        return {
                            id: "ID",
                            col1: 'Column 1',
                            col2: {label: 'Column2', sortable: false},
                            col3: 'Column 3',
                            col4: 'Column 4',
                            col5: 'Column 5'
                        };
                    };
                    getColumns2 = function(){
                        return {
                            col2: 'Col2',
                            col4: {label: 'Col4', sortable: false},
                            col1: 'Col1',
                            col5: 'Column 5'
                        };
                    };
 
                    function createGrid(args){
                        window.grid = new CustomGrid(lang.mixin({
                                    collection: testAsyncStore,
                                    columns: getColumns(),
                                    noDataMessage: "No results.",
                                    loadingMessage: "Loading..."
                                }, args),
                            "grid");
                    }
                    createGrid();
 
                    var form = document.getElementById("configForm");
                    form.onsubmit = function() {
                        var args = domForm.toObject(form);
                        args.pagingLinks = +args.pagingLinks;
                        args.rowsPerPage = +args.rowsPerPage;
                        if (!args.previousNextArrows) { args.previousNextArrows = false; }
                        if (!args.showLoadingMessage) { args.showLoadingMessage = false; }
 
                        // recreate grid using args from form
                        window.grid.destroy();
                        domConstruct.create("div", { id: "grid" }, form, "after");
                        createGrid(args);
 
                        return false;
                    };
 
                    on(document.body, "dgrid-error", function(evt){
                        console.warn("error on grid: ", evt.grid.id, evt.error);
                    });
 
                    // auto-height grid
                    var grid2 = window.grid2 = new CustomGrid({
                        className: "dgrid-autoheight",
                        collection: testStore,
                        columns: getColumns2(),
                        pagingLinks: false,
                        pagingTextBox: true,
                        firstLastArrows: true,
                        rowsPerPage: 15,
                        pageSizeOptions: [10, 15, 25]
                    }, "grid2");
 
                    var form2 = document.getElementById("configForm2");
                    form2.onsubmit = function() {
                        var args = domForm.toObject(form2);
                        args.rowsPerPage = +args.rowsPerPage;
 
                        // set the rowsPerPage in the grid
                        window.grid2.set('rowsPerPage', args.rowsPerPage);
                        return false;
                    };
 
                    // GridFromHtml
                    window.gridfromhtml = new (declare([GridFromHtml, Keyboard, Selection, Pagination]))({
                        collection: testStore
                    }, "gridfromhtml");
 
                    // ColumnSet grid
                    window.gridColumnSet = new (declare([Grid, Keyboard, Selection, ColumnSet, Pagination]))({
                        collection: testStore,
                        columnSets: [
                            [[
                                { label: "ID", field: "id" }
                            ]], [[
                                { label: "Column 1", field: "col1" },
                                { label: "Column 3", field: "col3" },
                                { label: "Column 4", field: "col4" },
                                { label: "Column 5", field: "col5" }
                            ]]
                        ]
                    }, "gridColumnSet");
                });
        </script>
    </head>
    <body class="claro">
        <h2>A basic grid with the Pagination extension</h2>
        <h3>Configuration</h3>
        <form id="configForm">
            <div><label><input type="checkbox" name="firstLastArrows">
                Show first/last page arrows</label></div>
            <div><label><input type="checkbox" name="previousNextArrows" checked>
                Show previous/next page arrows</label></div>
            <div><label><input type="checkbox" name="pagingTextBox">
                Show "jump-to" textbox</label></div>
            <div><label><input type="checkbox" name="showLoadingMessage" checked>
                Show loading message while loading data</label></div>
            <div>
                <label><input type="text" name="rowsPerPage" value="10" size="1">
                    Number of rows to show per page</label>
            </div>
            <div>
                <label><input type="text" name="pagingLinks" value="2" size="1">
                    Number of neighboring page numbers to display to each side of current
                    (0 to disable)</label>
            </div>
            <div><button type="submit">Update Grid</button></div>
        </form>
        <div id="grid"></div>
        <div>Buttons to test changing column structure:
            <button onclick="grid.set('columns', getColumns2());">New Structure</button>
            <button onclick="grid.set('columns', getColumns());">Original Structure</button>
        </div>
        <div>Buttons to test different stores:
            <button onclick="grid.set('collection', testAsyncStore);">Set to async store</button>
            <button onclick="grid.set('collection', testStore);">Set to sync store</button>
            <button onclick="grid.set('collection', emptyAsyncStore);">Set to empty store</button>
            <button onclick="grid.set('collection', errorStores.asyncFetch);">Set to error store</button>
        </div>
        <div>Buttons to test store operations:
            <button onclick="grid.collection.remove(5);">Delete item with id 5 from store</button>
            <button onclick="grid.collection.add({col1:'new', col2:true});">Add item to store</button>
            <button onclick="grid.set('showFooter', !grid.get('showFooter'));">Toggle footer</button>
        </div>
 
        <h2>A grid with declarative structure, with the Pagination extension</h2>
        <table id="gridfromhtml">
            <thead><tr>
                <th data-dgrid-column="{ field: 'col1' }">Column 1</th>
                <th data-dgrid-column="{ field: 'col2', sortable: false }">Column 2</th>
                <th data-dgrid-column="{ field: 'col3' }">Column 3</th>
                <th data-dgrid-column="{ field: 'col4' }">Column 4</th>
                <th data-dgrid-column="{ field: 'col5' }">Column 5</th>
            </tr></thead>
        </table>
 
        <h2>An autoheight grid with the Pagination extension,
            with a rows-per-page drop-down</h2>
        <form id="configForm2">
            <div>
                <label><input type="text" name="rowsPerPage" size="1">
                    Number of rows to show per page</label>
            </div>
            <div><button type="submit">Update</button> (The rowsPerPage value will be set without recreating the grid.)</div>
        </form>
        <div id="grid2"></div>
 
        <h2>A grid with ColumnSets with the Pagination extension</h2>
        <div id="gridColumnSet"></div>
    </body>
</html>