X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fclient_js.js;h=4697fa63bf4943124217c57e9981a7e2ce12496f;hb=1bdfacee11393f18563ccd8143a9408f07449ede;hp=e096d5236177ab01898f381cdb692ec014d02170;hpb=3ac83c6134a876990a2b5e26075e4304b3ce1cae;p=kivitendo-erp.git diff --git a/js/client_js.js b/js/client_js.js index e096d5236..4697fa63b 100644 --- a/js/client_js.js +++ b/js/client_js.js @@ -86,10 +86,18 @@ ns.eval_json_result = function(data) { // Form Events else if (action[0] == 'focus') $(action[1]).focus(); - // ## jqModal plugin ## + // Generic Event Handling ## + else if (action[0] == 'on') $(action[1]).on(action[2], kivi.get_function_by_name(action[3])); + else if (action[0] == 'off') $(action[1]).off(action[2], kivi.get_function_by_name(action[3])); + else if (action[0] == 'one') $(action[1]).one(action[2], kivi.get_function_by_name(action[3])); + + // ## jQuery UI dialog plugin ## // Closing and removing the popup - else if (action[0] == 'jqmClose') $(action[1]).jqmClose(); + else if (action[0] == 'dialog:close') $(action[1]).dialog('close'); + + // ## jQuery Form plugin ## + else if (action[0] == 'ajaxForm') pattern: $(action[1]).ajaxForm({ success: eval_json_result }); // ## jstree plugin ## @@ -128,12 +136,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: