X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fcommon.js;h=d2594a2778b551007302afe7f81fdee617cb43b9;hb=4252995520f5020735ca33d3fbbe63d9f6d4ef0b;hp=298d5a2cbee2fe4cdf2e36ef1c9d0618e0e2a48f;hpb=9516d554254a249d4fa70dab282da5f03df65548;p=kivitendo-erp.git diff --git a/js/common.js b/js/common.js index 298d5a2cb..d2594a277 100644 --- a/js/common.js +++ b/js/common.js @@ -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); - } + } - try{ + try{ eval(test_val); }catch(err){ return show_alert_and_focus(input_name, wrongNumberFormat); - } + } } @@ -160,13 +160,39 @@ function focus_by_name(name){ return false; } +function open_jqm_window(params) { + params = params || { }; + var url = params.url; + var id = params.id ? params.id : 'jqm_popup_dialog'; + + if (params.data) { + var data = typeof params.data === "string" ? params.data : $.param(params.data); + url += (/\?/.exec(url) ? "&" : "?") + data; + } + + $('#' + id).remove(); + var div = $('
').hide().appendTo('body'); + var close = $('
').appendTo(div); + var content = $('
').appendTo(div); + div.jqm({ modal: true }); + div.jqmShow(); + $.ajax({ url: url, success: function(new_html) { $(content).html(new_html); } }); + $(close).click(function() { + div.jqmClose(); + }); + + return true; +} + $(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; } - if (focus_by_name('fokus')) return; if (focus_by_name('cursor_fokus')) return; set_cursor_to_first_element(); });