jobtracker.js
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:4k
源码类别:

网格计算

开发平台:

Java

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements.  See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License.  You may obtain a copy of the License at
  8. *
  9. *     http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. function checkButtonVerbage()
  18. {
  19.   var inputs = document.getElementsByName("jobCheckBox");
  20.   var check = getCheckStatus(inputs);
  21.   setCheckButtonVerbage(! check);
  22. }
  23. function selectAll()
  24. {
  25.   var inputs = document.getElementsByName("jobCheckBox");
  26.   var check = getCheckStatus(inputs);
  27.   for (var i in inputs) {
  28.     if ('jobCheckBox' == inputs[i].name) {
  29.       if ( inputs[i].parentNode.parentNode.style.display != 'none') {
  30.         inputs[i].checked = ! check;
  31.       }
  32.     }
  33.   }
  34.   setCheckButtonVerbage(check);
  35. }
  36. function getCheckStatus(inputs)
  37. {
  38.   var check = true;
  39.   for (var i in inputs) {
  40.     if ('jobCheckBox' == inputs[i].name) {
  41.       if ( inputs[i].parentNode.parentNode.style.display != 'none') {
  42.         check = (inputs[i].checked && check);
  43.       }
  44.     }
  45.   }
  46.   return check;
  47. }
  48. function setCheckButtonVerbage(check)
  49. {
  50.   var op = document.getElementById("checkEm");
  51.   op.value = check ? "Select All" : "Deselect All";
  52. }
  53. function applyfilter()
  54. {
  55.   var cols = ["job","priority","user","name"];
  56.   var nodes = [];
  57.   var filters = [];
  58.   for (var i = 0; i < cols.length; ++i) {
  59.     nodes[i] = document.getElementById(cols[i] + "_0" );
  60.   }
  61.   var filter = document.getElementById("filter");
  62.   filters = filter.value.split(' ');
  63.   var row = 0;
  64.   while ( nodes[0] != null ) {
  65.     //default display status
  66.     var display = true;
  67.     // for each filter
  68.     for (var filter_idx = 0; filter_idx < filters.length; ++filter_idx) {
  69.       // go check each column
  70.       if ((getDisplayStatus(nodes, filters[filter_idx], cols)) == 0) {
  71.         display = false;
  72.         break;
  73.       }
  74.     }
  75.     // set the display status
  76.     nodes[0].parentNode.style.display = display ? '' : 'none';
  77.     // next row
  78.     ++row;
  79.     // next set of controls
  80.     for (var i = 0; i < cols.length; ++i) {
  81.       nodes[i] = document.getElementById(cols[i] + "_" + row);
  82.     }
  83.   }  // while
  84. }
  85. function getDisplayStatus(nodes, filter, cols)
  86. {
  87.   var offset = filter.indexOf(':');
  88.   var search = offset != -1 ? filter.substring(offset + 1).toLowerCase() : filter.toLowerCase();
  89.   for (var col = 0; col < cols.length; ++col) {
  90.     // a column specific filter
  91.     if (offset != -1 ) {
  92.       var searchCol = filter.substring(0, offset).toLowerCase();
  93.          if (searchCol == cols[col]) {
  94.          // special case jobs to remove unnecessary stuff
  95.          return containsIgnoreCase(stripHtml(nodes[col].innerHTML), search);
  96.           }
  97.      } else if (containsIgnoreCase(stripHtml(nodes[col].innerHTML), filter)) {
  98.        return true;
  99.      }
  100.    }
  101.   return false;
  102. }
  103. function stripHtml(text)
  104. {
  105.   return text.replace(/<[^>]*>/g,'').replace(/&[^;]*;/g,'');
  106. }
  107. function containsIgnoreCase(haystack, needle)
  108. {
  109.   return haystack.toLowerCase().indexOf(needle.toLowerCase()) != -1;
  110. }
  111. function confirmAction()
  112. {
  113.   return confirm("Are you sure?");
  114. }
  115. function toggle(id)
  116. {
  117.   if ( document.getElementById(id).style.display != 'block') {
  118.     document.getElementById(id).style.display = 'block';
  119.   }
  120.   else {
  121.     document.getElementById(id).style.display = 'none';
  122.   }
  123. }