Browse Source

Bugfix gener. Standardlayout validation #192223

master
Daniel Quathamer 2 weeks ago
parent
commit
1daa649178
  1. 5
      superx/xml/js/memtext/sx_functions.js

5
superx/xml/js/memtext/sx_functions.js

@ -1292,7 +1292,10 @@ function datenblatt_validate() {
bericht = document.getElementById('select_tablestylesheet').value; bericht = document.getElementById('select_tablestylesheet').value;
ausgfor = document.getElementById('select_Ausgabeformat').value; ausgfor = document.getElementById('select_Ausgabeformat').value;
if ((bericht != "" && ausgfor != "")) { if ((bericht != "" && ausgfor != "")) {
if (bericht == "tabelle_html.xsl" && ausgfor != "text/html") { if (
(bericht == "tabelle_html.xsl" || bericht == "tabelle_html_datenblatt.xsl")
&& ausgfor != "text/html")
{
return false; return false;
} else { } else {
return true; return true;

Loading…
Cancel
Save