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
| Ext.require([
| 'Ext.grid.*',
| 'Ext.data.*',
| 'Ext.util.*',
| 'Ext.state.*',
| 'Ext.form.*'
| ]);
|
| Ext.onReady(function(){
| // Define our data model
| Ext.define('Employee', {
| extend: 'Ext.data.Model',
| fields: [
| 'name',
| 'email',
| { name: 'start', type: 'date', dateFormat: 'n/j/Y' },
| { name: 'salary', type: 'float' },
| { name: 'active', type: 'bool' }
| ]
| });
|
| // Generate mock employee data
| var data = (function() {
| var lasts = ['Jones', 'Smith', 'Lee', 'Wilson', 'Black', 'Williams', 'Lewis', 'Johnson', 'Foot', 'Little', 'Vee', 'Train', 'Hot', 'Mutt'],
| firsts = ['Fred', 'Julie', 'Bill', 'Ted', 'Jack', 'John', 'Mark', 'Mike', 'Chris', 'Bob', 'Travis', 'Kelly', 'Sara'],
| lastLen = lasts.length,
| firstLen = firsts.length,
| usedNames = {},
| data = [],
| s = new Date(2007, 0, 1),
| eDate = Ext.Date,
| now = new Date(),
| getRandomInt = Ext.Number.randomInt,
|
| generateName = function() {
| var name = firsts[getRandomInt(0, firstLen - 1)] + ' ' + lasts[getRandomInt(0, lastLen - 1)];
| if (usedNames[name]) {
| return generateName();
| }
| usedNames[name] = true;
| return name;
| };
|
| while (s.getTime() < now.getTime()) {
| var ecount = getRandomInt(0, 3);
| for (var i = 0; i < ecount; i++) {
| var name = generateName();
| data.push({
| start : eDate.add(eDate.clearTime(s, true), eDate.DAY, getRandomInt(0, 27)),
| name : name,
| email: name.toLowerCase().replace(' ', '.') + '@sencha-test.com',
| active: getRandomInt(0, 1),
| salary: Math.floor(getRandomInt(35000, 85000) / 1000) * 1000
| });
| }
| s = eDate.add(s, eDate.MONTH, 1);
| }
|
| return data;
| })();
|
| // create the Data Store
| var store = Ext.create('Ext.data.Store', {
| // destroy the store if the grid is destroyed
| autoDestroy: true,
| model: 'Employee',
| proxy: {
| type: 'memory'
| },
| data: data,
| sorters: [{
| property: 'start',
| direction: 'ASC'
| }]
| });
|
| var rowEditing = Ext.create('Ext.grid.plugin.RowEditing', {
| clicksToMoveEditor: 1,
| autoCancel: false
| });
|
| // create the grid and specify what field you want
| // to use for the editor at each column.
| var grid = Ext.create('Ext.grid.Panel', {
| store: store,
| columns: [{
| header: 'Name',
| dataIndex: 'name',
| flex: 1,
| editor: {
| // defaults to textfield if no xtype is supplied
| allowBlank: false
| }
| }, {
| header: 'Email',
| dataIndex: 'email',
| width: 160,
| editor: {
| allowBlank: false,
| vtype: 'email'
| }
| }, {
| xtype: 'datecolumn',
| header: 'Start Date',
| dataIndex: 'start',
| width: 105,
| editor: {
| xtype: 'datefield',
| allowBlank: false,
| format: 'm/d/Y',
| minValue: '01/01/2006',
| minText: 'Cannot have a start date before the company existed!',
| maxValue: Ext.Date.format(new Date(), 'm/d/Y')
| }
| }, {
| xtype: 'numbercolumn',
| header: 'Salary',
| dataIndex: 'salary',
| format: '$0,0',
| width: 90,
| editor: {
| xtype: 'numberfield',
| allowBlank: false,
| minValue: 1,
| maxValue: 150000
| }
| }, {
| xtype: 'checkcolumn',
| header: 'Active?',
| dataIndex: 'active',
| width: 60,
| editor: {
| xtype: 'checkbox',
| cls: 'x-grid-checkheader-editor'
| }
| }],
| renderTo: 'editor-grid',
| width: 600,
| height: 400,
| title: 'Employee Salaries',
| frame: true,
| tbar: [{
| text: 'Add Employee',
| iconCls: 'employee-add',
| handler : function() {
| rowEditing.cancelEdit();
|
| // Create a model instance
| var r = Ext.create('Employee', {
| name: 'New Guy',
| email: 'new@sencha-test.com',
| start: Ext.Date.clearTime(new Date()),
| salary: 50000,
| active: true
| });
|
| store.insert(0, r);
| rowEditing.startEdit(0, 0);
| }
| }, {
| itemId: 'removeEmployee',
| text: 'Remove Employee',
| iconCls: 'employee-remove',
| handler: function() {
| var sm = grid.getSelectionModel();
| rowEditing.cancelEdit();
| store.remove(sm.getSelection());
| if (store.getCount() > 0) {
| sm.select(0);
| }
| },
| disabled: true
| }],
| plugins: [rowEditing],
| listeners: {
| 'selectionchange': function(view, records) {
| grid.down('#removeEmployee').setDisabled(!records.length);
| }
| }
| });
| });
|
|