X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/d59ca2b3ff5c4772ec86ac14e5867cce3f64326e..69e7991b5949fce09f2ec772a15163c27a5dc439:/js/common.js diff --git a/js/common.js b/js/common.js index f568782cd..182d47d9b 100644 --- a/js/common.js +++ b/js/common.js @@ -45,7 +45,7 @@ function set_longdescription_window(input_name) { } function check_right_number_format(input_name) { - if(decpoint == thpoint) { + if(decpoint && thpoint && thpoint == decpoint) { return show_alert_and_focus(input_name, wrongNumberFormat); } var test_val = input_name.value; @@ -55,20 +55,19 @@ function check_right_number_format(input_name) { if(thpoint && thpoint == '.'){ test_val = test_val.replace(/\./g, ''); } - if(thpoint && decpoint == ','){ + if(decpoint && decpoint == ','){ test_val = test_val.replace(/,/g, '.'); } - - var forbidden = test_val.match(/[^-\+\/\*\.0-9\ ]/g ); + 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); - } + } } @@ -161,13 +160,55 @@ function focus_by_name(name){ return false; } +function open_jqm_window(params) { + params = params || { }; + var id = params.id ? params.id : 'jqm_popup_dialog'; + + $('#' + id).remove(); + var div = $('
').hide().appendTo('body'); + var close = $('
').appendTo(div); + var content = $('
').appendTo(div); + + div.jqm({ modal: true }); + div.jqmShow(); + $(close).click(function() { + div.jqmClose(); + }); + + $.ajax({ + url: params.url, + data: params.data, + type: params.type, + success: function(new_html) { $(content).html(new_html); } + }); + + return true; +} + $(document).ready(function () { + // initialize all jQuery UI tab elements: + $(".tabwidget").each(function(idx, element) { + element = $(element); + var cookieName = 'jquery_ui_tab_'+ element.attr('id'); + element.tabs({ + active: $.cookie(cookieName), + activate: function(event, ui) { + var i = ui.newTab.parent().children().index(ui.newTab); + $.cookie(cookieName, i); + }, + }); + }); + $('input').focus(function(){ if (focussable(this)) window.focused_element = this; }); + + var initial_focus = $(".initial_focus").filter(':visible')[0]; + if (initial_focus) + $(initial_focus).focus(); + // 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(); });