]> wagnertech.de Git - mfinanz.git/blobdiff - js/common.js
Refactoring: DHTML-Tab-Dialog durch Variante aus jQuery-UI ersetzt
[mfinanz.git] / js / common.js
index 298d5a2cbee2fe4cdf2e36ef1c9d0618e0e2a48f..e40b9abfec5c4035dd36039ee7d29af6ef8a4236 100644 (file)
@@ -61,13 +61,13 @@ function check_right_number_format(input_name) {
   var forbidden = test_val.match(/[^\s\d\(\)\-\+\*\/\.]/g);
   if (forbidden && forbidden.length > 0 ){
     return show_alert_and_focus(input_name, wrongNumberFormat);
   var forbidden = test_val.match(/[^\s\d\(\)\-\+\*\/\.]/g);
   if (forbidden && forbidden.length > 0 ){
     return show_alert_and_focus(input_name, wrongNumberFormat);
-  } 
+  }
 
 
-  try{ 
+  try{
     eval(test_val);
   }catch(err){
     return show_alert_and_focus(input_name, wrongNumberFormat);
     eval(test_val);
   }catch(err){
     return show_alert_and_focus(input_name, wrongNumberFormat);
-  } 
+  }
 
 }
 
 
 }
 
@@ -161,12 +161,14 @@ function focus_by_name(name){
 }
 
 $(document).ready(function () {
 }
 
 $(document).ready(function () {
+  // initialize all jQuery UI tab elements:
+  $(".tabwidget").each(function(idx, element) { $(element).tabs(); });
+
   $('input').focus(function(){
     if (focussable(this)) window.focused_element = this;
   });
   // legacy. sone forms install these
   if (typeof fokus == 'function') { fokus(); return; }
   $('input').focus(function(){
     if (focussable(this)) window.focused_element = this;
   });
   // legacy. sone forms install these
   if (typeof fokus == 'function') { fokus(); return; }
-  if (focus_by_name('fokus'))        return;
   if (focus_by_name('cursor_fokus')) return;
   set_cursor_to_first_element();
 });
   if (focus_by_name('cursor_fokus')) return;
   set_cursor_to_first_element();
 });