Skip to content
Snippets Groups Projects
Commit 8e0d3660 authored by mcramer's avatar mcramer
Browse files

Bugfix: Disabled form elements are not submitted, enabling them again on tab click

parent 97f5c2d0
No related branches found
No related tags found
2 merge requests!46Master,!21Master
......@@ -233,6 +233,9 @@
<tmpl_if name="readonly_tab">
jQuery('div.panel_web_domain').find('fieldset').find('input,select,button').attr('disabled', 'disabled');
jQuery('div.tabbox_tabs').find('a').click(function() {
jQuery('div.panel_web_domain').find('fieldset').find('input,select,button').removeAttr('disabled');
});
</tmpl_if>
</script>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment