on_load entfernt und in jquery.ready verwandelt
authorSven Schöling <s.schoeling@linet-services.de>
Thu, 20 Sep 2012 17:10:47 +0000 (19:10 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Wed, 17 Oct 2012 14:01:20 +0000 (16:01 +0200)
templates/webpages/do/search.html
templates/webpages/do/set_stock_in_out.html
templates/webpages/do/stock_in_form.html
templates/webpages/fu/add_edit.html
templates/webpages/fu/search.html
templates/webpages/wh/journal_filter.html
templates/webpages/wh/report_filter.html
templates/webpages/wh/transfer_parts_selection.html
templates/webpages/wh/warehouse_selection.html
templates/webpages/wh/warehouse_selection_assembly.html
templates/webpages/wh/warehouse_selection_stock.html

index dd964f4..6e1bedc 100644 (file)
@@ -1,8 +1,6 @@
 [%- USE T8 %]
 [%- USE L %]
 [%- USE HTML %][%- USE LxERP %]
-<body onload="on_load();">
-
  [%- IF vc == 'customer' %]
  [%- SET is_customer = '1' %]
  [%- ELSE %]
@@ -10,11 +8,7 @@
  [%- END %]
 
  <script type="text/javascript">
-  <!--
-      function on_load() {
-        document.Form.donumber.focus();
-      }
-    -->
+   $(function(){ document.Form.donumber.focus(); });
  </script>
 
  <style type="text/css">
index 2a40029..b3a5250 100644 (file)
@@ -1,18 +1,16 @@
 [% USE HTML %]
 [% USE L %]
 [% L.javascript_tag('jquery') %]
-<body onload="on_load();">
-
  <script type="text/javascript">
   <!--
-      function on_load() {
+      $(function(){
         var row = $('#row').attr('value');
         window.opener.document.getElementsByName("stock_" + $('#in_out').attr('value') + "_" + row)[0].value = $('#stock').attr('value');
         $(window.opener.document.getElementById("stock_in_out_qty_display_" + row)).html($('#qty_display').attr('value'));
         $(window.opener.document.getElementById("stock_in_out_qty_matches_" + row)).val([% qty_matches %]);
 
         window.close();
-      }
+      });
     -->
  </script>
 
index f36e495..27457f3 100644 (file)
@@ -1,8 +1,6 @@
 [%- USE T8 %]
 [%- USE L %]
 [%- USE HTML %][%- USE LxERP %][%- USE JavaScript %]
-<body[%- UNLESS delivered %] onload="on_load();"[%- END %]>
-
  [%- UNLESS delivered %]
  <script type="text/javascript">
   <!--
@@ -30,7 +28,7 @@
         control.options[initial_bin_index].selected = true;
       }
 
-      function on_load() {
+      $(function(){
         [%- USE STOCK_INFO_it = Iterator(STOCK_INFO) %][%- FOREACH si = STOCK_INFO_it %]
           // new si for wh [% si.warehouse_id %] bin [% si.bin_id %]
           [%- SET warehouse_selected = '0' %]
@@ -48,7 +46,7 @@
           warehouse_selected([% STOCK_INFO_it.count %], 0);
           [%- END %]
         [%- END %]
-      }
+      });
     -->
  </script>
  [%- END %]
index 2179283..72f954d 100644 (file)
@@ -1,14 +1,8 @@
 [%- USE T8 %]
 [%- USE L %]
 [%- USE HTML %]
-<body onload="on_load();">
-
  <script type="text/javascript">
-  <!--
-      function on_load() {
-        document.Form.subject.focus();
-      }
-    -->
+   $(function(){ document.Form.subject.focus(); });
  </script>
 
  <form action="fu.pl" method="post" name="Form">
index b1f6aee..3b9fcee 100644 (file)
@@ -1,14 +1,8 @@
 [%- USE T8 %]
 [%- USE L %]
 [% USE HTML %]
-<body onload="on_load()">
-
  <script type="text/javascript">
-  <!--
-      function on_load() {
-        document.Form.subject.focus();
-      }
-    -->
+   $(function(){ document.Form.subject.focus(); });
  </script>
 
  <div class="listtop">[% title %]</div>
index 638a968..3674058 100644 (file)
@@ -1,8 +1,6 @@
 [%- USE T8 %]
 [%- USE L %]
 [%- USE HTML %][%- USE JavaScript %]
-<body onload="on_load();">
-
  <script type="text/javascript">
    <!--
       warehouses = new Array();
         control.options[bin_index].selected = true;
       }
 
-      function on_load() {
+      $(function() {
         warehouse_selected(0, 0);
         document.Form.partnumber.focus();
-      }
+      })
      -->
  </script>
 
index 0386847..77a5070 100644 (file)
@@ -1,8 +1,6 @@
 [%- USE T8 %]
 [%- USE L %]
 [%- USE HTML %][%- USE JavaScript %]
-<body onload="on_load();">
-
  <script type="text/javascript">
    <!--
       warehouses = new Array();
         control.options[bin_index].selected = true;
       }
 
-      function on_load() {
+      $(function () {
         warehouse_selected(0, 0);
         document.Form.partnumber.focus();
-      }
+      });
      -->
  </script>
 
index b5616f7..e026dc6 100644 (file)
@@ -1,7 +1,5 @@
 [%- USE T8 %]
 [%- USE HTML %][%- USE JavaScript %]
-<body onload="on_load();">
-
  <script type="text/javascript">
   <!--
       warehouses = new Array();
         control.options[0].selected = true;
       }
 
-      function on_load() {
+      $(function() {
         [% FOREACH row = CONTENTS %]
         warehouse_selected([% loop.count %], [% initial_warehouse_idx %]);
         [% END %]
-      }
+      });
     -->
  </script>
 
index 13c208e..29ffe75 100644 (file)
@@ -2,8 +2,6 @@
 [%- USE HTML %]
 [%- USE L %]
 [%- USE JavaScript %]
-<body onload="on_load();">
-
  <script type="text/javascript" src="js/common.js"></script>
  <script type="text/javascript" src="js/part_selection.js"></script>
  <script type="text/javascript">
         control.options[bin_index].selected = true;
       }
 
-      function on_load() {
+      $(function() {
         warehouse_selected(0, 0);
         document.Form.partnumber.focus();
-      }
+      });
      -->
  </script>
 
index bb51941..394450c 100644 (file)
@@ -1,8 +1,6 @@
 [%- USE T8 %]
 [%- USE L %]
 [%- USE HTML %][%- USE JavaScript %][%- USE LxERP %]
-<body onload="on_load();">
-
  <script type="text/javascript" src="js/common.js"></script>
  <script type="text/javascript" src="js/part_selection.js"></script>
  <script type="text/javascript">
@@ -51,9 +49,9 @@
         control.options[bin_index].selected = true;
       }
 
-      function on_load() {
+      $(function() {
         warehouse_selected([% warehouse_id %], [% bin_id %]);
-      }
+      })
     -->
  </script>
 
index 1a50d55..bdff796 100644 (file)
@@ -1,8 +1,6 @@
 [%- USE T8 %]
 [%- USE L %]
 [%- USE HTML %][%- USE JavaScript %][%- USE LxERP %]
-<body onload="on_load();">
-
  <script type="text/javascript" src="js/common.js"></script>
  <script type="text/javascript" src="js/part_selection.js"></script>
  <script type="text/javascript">
@@ -51,9 +49,9 @@
         control.options[bin_index].selected = true;
       }
 
-      function on_load() {
+      $(function() {
         warehouse_selected([% warehouse_id %], [% bin_id %]);
-      }
+      })
     -->
  </script>