Sv.js
5.55 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
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
function renderercell(value, metaData, record, row, col, store, gridView) {
return '<div style="font-size: 14px; color:#3892d3; text-align:center;">'+value+'</div>';
}
function rendererstatusimg(value, metaData, record, rowIndex, colIndex, store) {
if(value) {
// return '<div style="font-size: 14px; color:#3892d3; text-align:center;">'+'Запущен'+'</div>';
return '<span><img src="resources/img/button-green.png" height="18" width="18"/> </span>';
}else {
return '<div style="font-size: 14px; color:#3892d3; text-align:center;">'+'Остановлен'+'</div>';
}
}
function rendererstatustitle(value, metaData, record, rowIndex, colIndex, store) {
if(value) {
return '<div style="font-size: 14px; color:#3892d3; text-align:center;">'+'Запущен'+'</div>';
}else {
return '<div style="font-size: 14px; color:#3892d3; text-align:center;">'+'Остановлен'+'</div>';
}
}
Ext.define('App.view.Sv', {
extend : 'Ext.grid.Panel',
xtype : 'mvvm-SvView',
title : 'Управление службами',
store : 'Sv',
bbar: {
items: [
{
xtype: 'button',
iconCls:'load',
itemId: 'LoadSvButton',
text: 'Обновить',
action: 'loadSv',
disabled:false
}
]
},
selType: 'rowmodel',
plugins: [new Ext.create('Ext.grid.plugin.RowEditing', {
clicksToEdit: 2,
pluginId: 'modelSvEditPlagin'
})
],
columns: [{
text : '№',
dataIndex : 'id',
width: 50,
hidden:true
},
{
text : 'Статус',
dataIndex : 'isrun',
width : 100,
renderer:rendererstatusimg,
// editor: new Ext.form.TextField({
// allowBlank: true
// })
},
{
text : 'Процесс',
dataIndex : 'process',
width : 150,
renderer:renderercell,
// editor: new Ext.form.TextField({
// allowBlank: true
// })
},
{
text : 'Примечание',
dataIndex : 'isrun',
width : 170,
renderer:rendererstatustitle,
// editor: new Ext.form.TextField({
allowBlank: true
// })
},
{
text : 'Автозагрузка',
dataIndex : 'autostart',
width : 100,
xtype: 'checkcolumn'
},
{
xtype:'actioncolumn',
width:170,
items: [{
icon: 'resources/img/start.png',
tooltip: 'Запустить',
handler: function(grid, rowIndex, colIndex) {
var rec = grid.getStore().getAt(rowIndex);
var data=Ext.util.JSON.encode(rec.data);
grid.mask("Запуск...");
Ext.Ajax.request({
method: "POST",
url: 'api/sv/start',
timeout: 60000,
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
params:data,
success: function(response, opts) {
grid.unmask();
var result = Ext.JSON.decode(response.responseText);
Ext.Msg.alert(result.type+" "+"Код-"+result.code,result.message);
}, failure: function(response, opts) {
grid.unmask();
Ext.Msg.alert('Failure', 'Ошибка соединения');
}
});
}
},{
icon: 'resources/img/stop.png',
tooltip: 'Остановить',
handler: function(grid, rowIndex, colIndex) {
var rec = grid.getStore().getAt(rowIndex);
console.log(rec);
//alert("Terminate " + rec.get('firstname'));
}
},
{
icon: 'resources/img/replay.png',
tooltip: 'Перезапустить',
handler: function(grid, rowIndex, colIndex) {
var rec = grid.getStore().getAt(rowIndex);
console.log(rec);
}
}
]
}
]
});