property.js
1.17 KB
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
Ext.require([
'Ext.button.Button',
'Ext.grid.property.Grid'
]);
Ext.onReady(function(){
// simulate updating the grid data via a button click
Ext.create('Ext.button.Button', {
renderTo: 'button-container',
text: 'Update source',
handler: function(){
propsGrid.setSource({
'(name)': 'Property Grid',
grouping: false,
autoFitColumns: true,
productionQuality: true,
created: new Date(),
tested: false,
version: 0.8,
borderWidth: 2
});
}
});
var propsGrid = Ext.create('Ext.grid.property.Grid', {
width: 300,
renderTo: 'grid-container',
propertyNames: {
tested: 'QA',
borderWidth: 'Border Width'
},
source: {
"(name)": "Properties Grid",
"grouping": false,
"autoFitColumns": true,
"productionQuality": false,
"created": Ext.Date.parse('10/15/2006', 'm/d/Y'),
"tested": false,
"version": 0.01,
"borderWidth": 1
}
});
});