Pflichtenhefttextblöcke: Umstellung submit_ajax_form()
authorMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 13 Mar 2013 16:34:13 +0000 (17:34 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 1 Apr 2014 11:02:28 +0000 (13:02 +0200)
js/requirement_spec.js
templates/webpages/requirement_spec_text_block/_form.html

index cec4097..c4daca4 100644 (file)
@@ -159,18 +159,6 @@ function standard_text_block_ajax_call(key, opt, other_data) {
   return true;
 }
 
-function submit_edit_text_block_form(id_base) {
-  var id   = $('#' + id_base + '_id').val();
-  var url  = "controller.pl?" + $('#' + id_base + '_form').serialize();
-  var data = {
-    action:      'RequirementSpecTextBlock/ajax_' + (id ? 'update' : 'create'),
-    id:          id,
-    form_prefix: id_base
-  };
-  $.post(url, data, eval_json_result);
-  return true;
-}
-
 function cancel_edit_text_block_form(id_base) {
   var id = $('#' + id_base + '_id').val();
   $('#' + id_base + '_form').remove();
index 5637b2f..8a8a6d3 100644 (file)
@@ -10,7 +10,8 @@
   [%- END %]
  </h2>
 
- [% L.hidden_tag(id_base _ '_id',                  SELF.text_block.id) %]
+ [% L.hidden_tag('form_prefix',                    id_base,            id=id_base _ '_form_prefix') %]
+ [% L.hidden_tag('id',                             SELF.text_block.id, id=id_base _ '_id') %]
  [% L.hidden_tag(id_base _ '.requirement_spec_id', SELF.text_block.requirement_spec_id) %]
  [% L.hidden_tag(id_base _ '.output_position',     SELF.text_block.output_position) %]
  [% IF insert_after %]
@@ -40,7 +41,7 @@
  </table>
 
  <p>
-  [% L.button_tag('submit_edit_text_block_form("' _ id_base _ '")', LxERP.t8('Save')) %]
+  [%- L.ajax_submit_tag('controller.pl?action=RequirementSpecTextBlock/ajax_' _ (SELF.text_block.id ? 'update' : 'create'), '#' _ id_base _ '_form', LxERP.t8('Save')) %]
   <a href="#" onclick="cancel_edit_text_block_form('[% id_base %]')">[%- LxERP.t8("Cancel") %]</a>
  </p>