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();
[%- 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 %]
</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>