PingUtil.js
1.69 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
Ext.define('App.controller.PingUtil', {
extend : 'Ext.app.Controller',
init : function() {
this.control({
'#btnping': {
click: this.startPing
}
});
},
startPing :function (btn, e, options) {
var form = Ext.getCmp('winPing');
if (form!=null) {
var ipValue=Ext.getCmp('ipaddress').getValue();
form.mask("Выполнение ...");
if (ipValue!="") {
var data=Ext.util.JSON.encode(ipValue);
Ext.Ajax.request({
method: "POST",
url: 'api/utils/ping',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
params: data,
success: function(response, opts) {
var result = Ext.JSON.decode(response.responseText);
var str="";
for(var i in result){
str=str+result[i]+"\n";
}
// console.log(str);
Ext.getCmp('pingResult').setValue(str);
form.unmask();
}, failure: function(response, opts) {
Ext.Msg.alert('Ошибка', 'Ошибка досупа к серверу');
}
});
}else {
//Ext.Msg.alert('Ошибка', 'Введите ');
}
}
}
});