X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=scripts%2Fgenerate_client_js_actions.tpl;h=50a427c458964ff2c1decd910140a24fed5e2fbf;hb=587100bda49b111367428750b51614e25be4d4d3;hp=6772cd10284705e429cf2439f88d8bcf33212d20;hpb=245d5036b6fbc2c9e4692244aff22d5188771e09;p=kivitendo-erp.git diff --git a/scripts/generate_client_js_actions.tpl b/scripts/generate_client_js_actions.tpl index 6772cd102..50a427c45 100644 --- a/scripts/generate_client_js_actions.tpl +++ b/scripts/generate_client_js_actions.tpl @@ -8,6 +8,12 @@ namespace("kivi", function(ns) { ns.display_flash = function(type, message) { $('#flash_' + type + '_content').text(message); $('#flash_' + type).show(); + $('#frame-header')[0].scrollIntoView(); +}; + +ns.display_flash_detail = function(type, message) { + $('#flash_' + type + '_detail').html(message); + $('#flash_' + type + '_disp').show(); }; ns.eval_json_result = function(data) { @@ -19,7 +25,10 @@ ns.eval_json_result = function(data) { $(['info', 'warning', 'error']).each(function(idx, category) { $('#flash_' + category).hide(); + $('#flash_detail_' + category).hide(); + $('#flash_' + category + '_disp').hide(); $('#flash_' + category + '_content').empty(); + $('#flash_' + category + '_detail').empty(); }); if ((data.js || '') != '') @@ -35,12 +44,6 @@ ns.eval_json_result = function(data) { // console.log("current_content_type " + $('#current_content_type').val() + ' ID ' + $('#current_content_id').val()); }; -ns.submit_ajax_form = function(url, form_selector, additional_data) { - var separator = /\?/.test(url) ? '&' : '?'; - $.post(url + separator + $(form_selector).serialize(), additional_data, ns.eval_json_result); - return true; -}; - }); // Local Variables: