]> wagnertech.de Git - mfinanz.git/blobdiff - scripts/generate_client_js_actions.tpl
Buchungsjournal: Filter "Bearbeiter" gefixt
[mfinanz.git] / scripts / generate_client_js_actions.tpl
index 7fa7baf95ec113f9a9d804525b1ac85bf936f35a..46032667f17927cf0ae16f09a3e24ae0ab8c8bd1 100644 (file)
@@ -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);
@@ -32,6 +34,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: