From: Jan Michel Date: Fri, 14 Apr 2023 14:52:22 +0000 (+0200) Subject: fix CTS gui error with old designs after including downscale X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=391fa01b959da993bda979ee86945dd31012b4ff;p=daqtools.git fix CTS gui error with old designs after including downscale --- diff --git a/web/htdocs/scripts/cts.js b/web/htdocs/scripts/cts.js index 59533e5..e311efd 100644 --- a/web/htdocs/scripts/cts.js +++ b/web/htdocs/scripts/cts.js @@ -446,6 +446,9 @@ var CTS = new Class({ var reg = 'trg_input_config' + i; var areg = 'trg_input_mux' + (i-source_from); var source; + var downscaleparams = {'class': 'text autocommit autoupdate', 'slice': reg + '.downscale'}; + if (noavail == " noavail") downscaleparams = {'class': 'text'}; + $('inputs-tab') .adopt( new Element('tr', {'class': i%2?'':'alt', 'flashgroup': 'itc-' + (i + parseInt(this.defs.properties.trg_input_itc_base))}) @@ -483,7 +486,7 @@ var CTS = new Class({ ), new Element('td', {'class': 'downscale'+noavail}) .adopt([ - new Element('input', {'class': 'text autocommit autoupdate', 'slice': reg + '.downscale'}) + new Element('input', downscaleparams) ]), ]) );