aboutsummaryrefslogtreecommitdiffstats
path: root/umc-iui/src/main/resources/webroot/umc-monitor/monitorSettingList.html
blob: bdd3955f5671147060577943127061932e87224a (plain)
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
<!--

    Copyright (C) 2015 ZTE, Inc. and others. All rights reserved. (ZTE)

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

            http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.

-->
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<link href="../component/thirdparty/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
 <link href="../component/thirdparty/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
 <link href="../vendor/animate/animate.min.css" rel="stylesheet" type="text/css" />
  <link href="../framework/css/ngict-component.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="../component/css/ZteIctIcons/style.css">
<link  href="./css/monitorSetting.css"  rel="stylesheet" />
<link href="./css/dataTables.bootstrap.css" rel="stylesheet" type="text/css" />



<style>
.ms-controller {
	visibility: hidden
}
</style>
</head>
<body>

 <div class="container-fluid" class="ms-controller"  ms-controller="monitorController">



  <div class="row" style=" margin-top: 15px;">
         <div class="col-xs-6 col-sm-12 col-md-6  col-lg-6">
           <span class=" titlefont" id="com_zte_openo_umc_monitor_monitorList_titeName" name_i18n="com_zte_openo_umc_monitor_ui_i18n">Monitor Para List </span>
         </div>  
          
   </div>
   <div class="separator-line"></div>
 <button class="btn white radius_l" id="app-new-btn" style=" margin-bottom: 10px;"  ms-click="gotoDACPage()">
            <i class="ict-it-net"></i>  
  <span id="com_zte_openo_umc_monitor_monitorList_dac_manage" name_i18n="com_zte_openo_umc_monitor_ui_i18n"></span>
          </button>

   
    <div class="row row-fluid">
        <table class="table table-striped table-bordered table-hover dataTable " id="monitorManagerTable">
            <thead>
                <tr class="heading">
                    <th style="width: 80px;" id="com_zte_openo_umc_monitor_monitorList_monitor_sn" name_i18n="com_zte_openo_umc_monitor_ui_i18n">SN</th>
                    <th id="com_zte_openo_umc_monitor_monitorList_monitor_name" name_i18n="com_zte_openo_umc_monitor_ui_i18n">Display Name</th>
                     <th id="com_zte_openo_umc_monitor_monitorList_monitor_ipaddress" name_i18n="com_zte_openo_umc_monitor_ui_i18n">IP Address</th>
					 <th id="com_zte_openo_umc_monitor_monitorList_monitor_dacip" name_i18n="com_zte_openo_umc_monitor_ui_i18n">DAC IP Address</th>
                     <th id="com_zte_openo_umc_monitor_monitorList_monitor_type" name_i18n="com_zte_openo_umc_monitor_ui_i18n">Type</th>
					 <th id="com_zte_openo_umc_monitor_monitorList_monitor_opr" name_i18n="com_zte_openo_umc_monitor_ui_i18n">Opr</th>
                    
                </tr>
            </thead>
            <tbody ms-each-monitor="resource.monitorList">
                <tr>
                    <td>{{$index+1}}</td>  
                    <td><a href="#" ms-click="gotoMonitorSettingPage(monitor.oid)">{{monitor.label}}</a></td>
                    <td ms-text="monitor.ipAddress"></td>    
					<td ms-text="monitor.customPara.PROXYIP"></td>                        
                    <td>{{monitor.neTypeId}}</td>
					<td><a href="#" ms-click="deleteMonitorInfo(monitor.oid)">
					<span id="com_zte_openo_umc_monitor_monitorsetting_delete" name_i18n="com_zte_openo_umc_monitor_ui_i18n">delete</span>
					</a></td>					
                </tr> 
                
                                      
            </tbody>
        </table>
 
    </div>

  

 </div>




<script type="text/javascript" src="../component/thirdparty/jquery/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="../component/thirdparty/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="../component/thirdparty/jquery.i18n/jquery.i18n.properties-1.0.9.js"></script>
 <script src="./i18n/loadi18nApp_ngict-umc-monitor.js"></script>
  <script type="text/javascript" src="../framework/js/tools.js"></script>
 <script type="text/javascript" src="../framework/js/core/hk.min.js" ></script>
<script type="text/javascript">
    

    var lang= getLanguage();
    loadPropertiesSideMenu(lang, 'umc-monitor-iui-i18n', 'i18n/');

</script>
<script type="text/javascript"  src="../vendor/data-tables/jquery.dataTables.min.js"></script>
<script src="../vendor/bootstrap-growl/bootstrap-growl.min.js"></script>
<script src="../vendor/avalon/avalon.js"></script>
<script src="./js/monitorSettingUtil.js"></script>
<script src="./js/monitorSettingController.js"></script>


<script>
$(function(){

   vm.queryMonitorList();

});

</script>


</body>
</html>