X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fkivi.js;h=17384220caa37ba51281d7074a4344f488ee1c68;hb=641d6d24af0b42ebcc999e6623cd97c24b407c91;hp=58a631a780fcaf607dc8a45b709c0f9047ab9c08;hpb=fc53682b03f43e2ab081867ee69e102747dfdf51;p=kivitendo-erp.git diff --git a/js/kivi.js b/js/kivi.js index 58a631a78..17384220c 100644 --- a/js/kivi.js +++ b/js/kivi.js @@ -31,7 +31,7 @@ namespace("kivi", function(ns) { ns.parse_date = function(date) { var parts = date.replace(/\s+/g, "").split(ns._date_format.sep); date = new Date( - ((parts[ ns._date_format.y ] || 0) * 1) || (new Date).getFullYear(), + ((parts[ ns._date_format.y ] || 0) * 1) || (new Date()).getFullYear(), (parts[ ns._date_format.m ] || 0) * 1 - 1, // Months are 0-based. (parts[ ns._date_format.d ] || 0) * 1 ); @@ -307,11 +307,13 @@ namespace("kivi", function(ns) { // - id: dialog DIV ID (optional; defaults to 'jqueryui_popup_dialog') // - url, data, type: passed as the first three arguments to the $.ajax() call if an AJAX call is made, otherwise ignored. // - dialog: an optional object of options passed to the $.dialog() call + // - load: an optional function that is called after the content has been loaded successfully (only if an AJAX call is made) ns.popup_dialog = function(params) { var dialog; params = params || { }; var id = params.id || 'jqueryui_popup_dialog'; + var custom_close = params.dialog ? params.dialog.close : undefined; var dialog_params = $.extend( { // kivitendo default parameters: width: 800 @@ -321,7 +323,15 @@ namespace("kivi", function(ns) { // User supplied options: params.dialog || { }, { // Options that must not be changed: - close: function(event, ui) { if (params.url || params.html) dialog.remove(); else dialog.dialog('close'); } + close: function(event, ui) { + if (custom_close) + custom_close(); + + if (params.url || params.html) + dialog.remove(); + else + dialog.dialog('close'); + } }); if (!params.url && !params.html) { @@ -351,6 +361,8 @@ namespace("kivi", function(ns) { success: function(new_html) { dialog.html(new_html); dialog.removeClass('loading'); + if (params.load) + params.load(); } }); } @@ -403,6 +415,22 @@ namespace("kivi", function(ns) { console.error('kivi.run("' + function_name + '"): No function by that name found'); return undefined; }; + + ns.detect_duplicate_ids_in_dom = function() { + var ids = {}, + found = false; + + $('[id]').each(function() { + if (this.id && ids[this.id]) { + found = true; + console.warn('Duplicate ID #' + this.id); + } + ids[this.id] = 1; + }); + + if (!found) + console.log('No duplicate IDs found :)'); + }; }); kivi = namespace('kivi');