Dns.js
3.09 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
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
Ext.define('App.view.Dns', {
extend : 'Ext.grid.Panel',
xtype : 'mvvm-DnsView',
title : 'DNS сервера',
store : 'Dns',
tbar: [
{
text:'Добавить',
handler: function(){
if (winadddns==null) {
var winadddns = Ext.create('widget.window', { // создание окна
title:'Добавить',
maximize: function(){
this.callParent([true]); //animate
},
restore: function(){
this.callParent([true]); //animate
},
closeAction: 'hide',
items: [
{
xtype : 'mvvm-DetailDnsView',
viewModel : {
data : {
rec : {
dns:'127.0.0.1'
}
}
}
}
]
});
winadddns.show();
}
}
}] ,
columns: [{
text : '№',
dataIndex : 'id',
flex: 1
},
{
text : 'HOST',
dataIndex : 'dns',
flex : 5
},
{
xtype: 'actioncolumn',
text : '#',
flex:1,
dataIndex: 'guid',
items: [{
icon: 'resources/img/tools.png',
handler: function (grid, rowIndex, colIndex) {
var rec = grid.getStore().getAt(rowIndex);
if (wintoolsdns==null) {
var wintoolsdns = Ext.create('widget.window', { // создание окна
title:'Изменить',
maximize: function(){
this.callParent([true]); //animate
},
restore: function(){
this.callParent([true]); //animate
},
closeAction: 'hide',
items: [
{
xtype : 'mvvm-DetailDnsView',
viewModel : {
data : {
rec : rec
}
}
}
]
});
wintoolsdns.show();
}
}
}
],
action: 'tools'
},
]
});