X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/88abef92ceaa2f2f297eb0b2a9a64418bed97ba7..c00f1e29f10d6b371dffc401f6e2c5d11eeb16c5:/js/client_js.js diff --git a/js/client_js.js b/js/client_js.js index 51e3638cd..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,19 +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 data = $(form_selector).serialize(); - if (additional_data) { - if (data) - data += '&'; - data += typeof additional_data == "string" ? additional_data : $(additional_data).serialize(); - } - - $.post(url, data, ns.eval_json_result); - - return true; -}; - }); // Local Variables: