Tooltips corrupt the boolean values into integers.

Thu, 09 Sep 2021 15:40:06 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 09 Sep 2021 15:40:06 +0200
changeset 776
5189ee5445cd
parent 775
3f2f6e483a4e
child 777
daf55c944fb0

Tooltips corrupt the boolean values into integers.

www/js/inv_yeasts.js file | annotate | diff | comparison | revisions
--- a/www/js/inv_yeasts.js	Wed Sep 01 11:34:01 2021 +0200
+++ b/www/js/inv_yeasts.js	Thu Sep 09 15:40:06 2021 +0200
@@ -239,7 +239,7 @@
  $('#tolerance').jqxNumberInput(Perc1dec);
  $('#tolerance').jqxNumberInput({ max: 25 });
  $('#sta1').jqxCheckBox({ theme: theme, width: 120, height: 23 });
- $('#sta1').jqxTooltip({ position: 'top-left', content: 'STA1 gen (var diastaticus), ook wel glucoamlylase+ genoemd.' });
+// $('#sta1').jqxTooltip({ position: 'top-left', content: 'STA1 gen (var diastaticus), ook wel glucoamlylase+ genoemd.' });
  $('#sta1').on('checked', function(event) { dataRecord.sta1 = 1; });
  $('#sta1').on('unchecked', function(event) { dataRecord.sta1 = 0; });
  $('#bacteria').jqxCheckBox({ theme: theme, width: 120, height: 23 });
@@ -251,7 +251,7 @@
  $('#harvest_time').jqxNumberInput(PosInt);
  $('#pitch_temperature').jqxNumberInput(YeastT);
  $('#pofpos').jqxCheckBox({ theme: theme, width: 120, height: 23 });
- $('#pofpos').jqxTooltip({ position: 'top-left', content: 'POF+ gist' });
+// $('#pofpos').jqxTooltip({ position: 'top-left', content: 'POF+ gist' });
  $('#pofpos').on('checked', function(event) { dataRecord.pofpos = 1; });
  $('#pofpos').on('unchecked', function(event) { dataRecord.pofpos = 0; });
  $('#zymocide').jqxDropDownList({

mercurial