/[projects]/dao/DaoAdresseVedligehold/src/main/webapp/index.html
ViewVC logotype

Diff of /dao/DaoAdresseVedligehold/src/main/webapp/index.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2910 by torben, Wed Feb 3 22:32:05 2016 UTC revision 2932 by torben, Thu Feb 11 17:35:31 2016 UTC
# Line 2  Line 2 
2    <head>    <head>
3    <head>    <head>
4          <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">          <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5            
6            <link rel="stylesheet" href="webjars/jquery-ui/1.11.4/jquery-ui.css" />
7    
8          <link rel="stylesheet" href="webjars/bootstrap/3.3.5/css/bootstrap.min.css" />          <link rel="stylesheet" href="webjars/bootstrap/3.3.5/css/bootstrap.min.css" />
9                    
10          <link rel="stylesheet" href="webjars/bootstrap-fileinput/4.2.7/css/fileinput.min.css" />          <link rel="stylesheet" href="webjars/bootstrap-fileinput/4.2.7/css/fileinput.min.css" />
11            
12            <style>
13            
14    @media (min-width: 1300px) {
15            .container {
16                width: 1300px; /*default 1170px*/
17            }
18    }
19            </style>
20    
21  <!--  use webjars for dependencies -->  <!--  use webjars for dependencies -->
22          <script src="webjars/jquery/2.1.4/jquery.js"></script>          <script src="webjars/jquery/2.1.4/jquery.js"></script>
23            <script src="webjars/jquery-ui/1.11.4/jquery-ui.js"></script>
24          <script src="webjars/bootstrap/3.3.5/js/bootstrap.min.js"></script>          <script src="webjars/bootstrap/3.3.5/js/bootstrap.min.js"></script>
25                    
26          <script src="webjars/bootstrap-fileinput/4.2.7/js/fileinput.min.js"></script>          <script src="webjars/bootstrap-fileinput/4.2.7/js/fileinput.min.js"></script>
# Line 41  function loadTasks() { Line 53  function loadTasks() {
53                                                    
54                                                    
55                          html += "<div class='panel " + pclass + "'>";                          html += "<div class='panel " + pclass + "'>";
56                          html += "<div class='panel-heading'><h4 class='panel-title'>" + entry.description + "</h4></div>";                          html += "<div class='panel-heading'>";
57                            if (entry.state == "STATE_DONE" || entry.state == "STATE_ABORTED" || entry.state ==  "STATE_QUEUED") {
58                                    html += "<button type='button' class='close removetask' aria-label='Close' taskid='" + entry.id+ "'><span aria-hidden='true'>&times;</span></button>";
59                            }
60                            html += "<h4 class='panel-title'>" + entry.description + "</h4>";
61                            html += "</div>";
62                          html += "  <div class='panel-body'>";                          html += "  <div class='panel-body'>";
63    
64                          html += entry.detail;                          html += entry.detail;
# Line 96  $(document).ready( function() { Line 113  $(document).ready( function() {
113          loadTasks();          loadTasks();
114          setInterval(loadTasks, 5000);          setInterval(loadTasks, 5000);
115                    
116            $("#center").resizable({
117            handles: 'e, w'
118            });
119            
120                    
121          $(document).on('click', '.viewlog', function(event) { // Bind future elements          $(document).on('click', '.viewlog', function(event) { // Bind future elements
122                  var taskid = $(this).attr('taskid');                  var taskid = $(this).attr('taskid');
# Line 103  $(document).ready( function() { Line 124  $(document).ready( function() {
124                                    
125          });          });
126                    
127            $(document).on('click', '.removetask', function(event) { // Bind future elements
128                    var taskid = $(this).attr('taskid');
129                    $.get('rest/tasks/remove/' + taskid, function() {
130                            loadTasks();
131                    });            
132            });
133            
134          $("#file").fileinput({          $("#file").fileinput({
135                  //'showUpload':false,                  //'showUpload':false,
136                  'showRemove': false,                              'showRemove': false,            
# Line 134  $(document).ready( function() { Line 162  $(document).ready( function() {
162                          alert("Du skal vælge distributør");                          alert("Du skal vælge distributør");
163                          return;                          return;
164                  }                  }
165                    var type = $("#afstand_type").val();
166                    var url = "rest/commands/distancecalculation/" + dist + "/" + type;
167                                    
168                                    
169                  $.get("rest/commands/distancecalculation/" + dist, function() {                  $.get(url, function() {
170                          loadTasks(); //Force reload of tasks immediately                          loadTasks(); //Force reload of tasks immediately
171                  } );                  } );
172                                    
# Line 154  $(document).ready( function() { Line 184  $(document).ready( function() {
184      <h1>Dao Adresse Vedligehold</h1>      <h1>Dao Adresse Vedligehold</h1>
185    </div>    </div>
186    <div id="body">    <div id="body">
187      <div class="row">      <div class="row">
188        <div class="col-sm-3" id="leftCol" >        <div class="col-sm-3" id="leftCol" >
189          <div class="panel panel-primary">          <div class="panel panel-primary">
190                  <div class="panel-heading">                  <div class="panel-heading">
# Line 222  $(document).ready( function() { Line 252  $(document).ready( function() {
252                              <option>BK</option>                              <option>BK</option>
253                              <option>DAO</option>                              <option>DAO</option>
254                            </select>                            </select>
255    
256                              
257                              <label for="type">Type:</label>
258                              <select class="form-control" id="afstand_type" name="afstand_type">
259                                <option>Incremental</option>
260                                <option>Full</option>                          
261                              </select>
262                            <br>                            <br>
263    
264                                                        
265                            <button class="btn btn-primary" id="afstandBtn">Beregn</button>                            <button class="btn btn-primary" id="afstandBtn">Beregn</button>
266        

Legend:
Removed from v.2910  
changed lines
  Added in v.2932

  ViewVC Help
Powered by ViewVC 1.1.20