From: Jan Michel Date: Tue, 18 Apr 2023 11:21:41 +0000 (+0200) Subject: Update CTS GUI coincidence display: X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=dad96f3b4b6d40d9b8bd986a4c27060bb4dff60a;p=daqtools.git Update CTS GUI coincidence display: n case of more than 8 input multiplexers coincidences only use first 8 muxes. Add highlighting of coincidence checkboxes to show input they refer to --- diff --git a/web/htdocs/layout/cts.css b/web/htdocs/layout/cts.css index ab1c97f..e86c53b 100644 --- a/web/htdocs/layout/cts.css +++ b/web/htdocs/layout/cts.css @@ -325,3 +325,8 @@ .noavail input{ visibility:hidden; } + + input[type=checkbox] { + margin:0 1px; + padding:0; + } diff --git a/web/htdocs/scripts/cts.js b/web/htdocs/scripts/cts.js index e311efd..43a551b 100644 --- a/web/htdocs/scripts/cts.js +++ b/web/htdocs/scripts/cts.js @@ -633,7 +633,7 @@ var CTS = new Class({ renderCoins: function() { $$("#coin-tab th.coin abbr, #coin-tab th.inhibit abbr").each(function(e){ e.set("text", e.get('text').match(/^(.*)(\(.*\))?/)[1] - + " (" + (this.defs.properties.trg_input_count-1) + ":0)"); + + " (" + (Math.min(this.defs.properties.trg_input_count-1,7)) + ":0)"); }.bind(this)); for(var i=0; i= 0; j--) { - coin.adopt( new Element('input', {'type': 'checkbox', 'class': 'autoupdate autocommit', 'slice': reg+'.coin_mask['+j+']'})); - inhibit.adopt(new Element('input', {'type': 'checkbox', 'class': 'autoupdate autocommit', 'slice': reg+'.inhibit_mask['+j+']'})); + for(var j=Math.min(this.defs.properties.trg_input_count-1,7); j >= 0; j--) { + coin.adopt( new Element('input', {'type': 'checkbox', 'class': 'autoupdate autocommit', 'slice': reg+'.coin_mask['+j+']', 'flashgroup': 'itc-' + (j + parseInt(this.defs.properties.trg_input_itc_base))})); + inhibit.adopt(new Element('input', {'type': 'checkbox', 'class': 'autoupdate autocommit', 'slice': reg+'.inhibit_mask['+j+']', 'flashgroup': 'itc-' + (j + parseInt(this.defs.properties.trg_input_itc_base))})); } } },