X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fclient_js.js;h=abeac1b39090d13ea0b8f03db5065608b6ed66ec;hb=99d05c2cc969eb4913cac08ae4331c4e6a82726a;hp=031b5c8f4c4bec7f411a3bcf4d3fced3cd6d9c5b;hpb=001c83b188e6a6394761c217d28984553f351c00;p=kivitendo-erp.git diff --git a/js/client_js.js b/js/client_js.js index 031b5c8f4..abeac1b39 100644 --- a/js/client_js.js +++ b/js/client_js.js @@ -16,8 +16,10 @@ function eval_json_result(data) { if (data.error) return display_flash('error', data.error); - $('#flash_error').hide(); - $('#flash_error_content').empty(); + $(['info', 'warning', 'error']).each(function(idx, category) { + $('#flash_' + category).hide(); + $('#flash_' + category + '_content').empty(); + }); if ((data.js || '') != '') eval(data.js); @@ -71,6 +73,11 @@ function eval_json_result(data) { else if (action[0] == 'removeProp') $(action[1]).removeProp(action[2]); else if (action[0] == 'val') $(action[1]).val(action[2]); + // Class attribute + else if (action[0] == 'addClass') $(action[1]).addClass(action[2]); + else if (action[0] == 'removeClass') $(action[1]).removeClass(action[2]); + else if (action[0] == 'toggleClass') $(action[1]).toggleClass(action[2]); + // Data storage else if (action[0] == 'data') $(action[1]).data(action[2], action[3]); else if (action[0] == 'removeData') $(action[1]).removeData(action[2]); @@ -78,6 +85,11 @@ function eval_json_result(data) { // Form Events else if (action[0] == 'focus') $(action[1]).focus(); + // ## jqModal plugin ## + + // Closing and removing the popup + else if (action[0] == 'jqmClose') $(action[1]).jqmClose(); + // ## jstree plugin ## // Operations on the whole tree @@ -104,6 +116,9 @@ function eval_json_result(data) { else if (action[0] == 'jstree:deselect_node') $.jstree._reference($(action[1])).deselect_node(action[2]); else if (action[0] == 'jstree:deselect_all') $.jstree._reference($(action[1])).deselect_all(); + // ## other stuff ## + else if (action[0] == 'redirect_to') window.location.href = action[1]; + else console.log('Unknown action: ' + action[0]); }); @@ -111,6 +126,12 @@ function eval_json_result(data) { // console.log("current_content_type " + $('#current_content_type').val() + ' ID ' + $('#current_content_id').val()); } +function submit_ajax_form(url, form_selector, additional_data) { + var separator = /\?/.test(url) ? '&' : '?'; + $.post(url + separator + $(form_selector).serialize(), additional_data, eval_json_result); + return true; +} + // Local Variables: // mode: js // End: