diff -r a9f8de2d7b2b -r f35a38e8c16f www/js/inv_miscs.js --- a/www/js/inv_miscs.js Tue Nov 06 22:55:55 2018 +0100 +++ b/www/js/inv_miscs.js Wed Nov 07 14:42:25 2018 +0100 @@ -113,11 +113,11 @@ }); } }; - var srcType = [ "Spice", "Fining", "Water Agent", "Herb", "Flavor", "Other" ]; + var srcType = [ "Spice", "Fining", "Water Agent", "Herb", "Flavor", "Yeast nutrient", "Other" ]; var srcUse = [ "Boil", "Mash", "Primary", "Secondary", "Bottling" ]; // initialize the input fields. $("#name").jqxInput({ theme: theme, width: 250, height: 23 }); - $("#type").jqxDropDownList({ theme: theme, source: srcType, width: 130, height: 23, dropDownHeight: 188 }); + $("#type").jqxDropDownList({ theme: theme, source: srcType, width: 130, height: 23, dropDownHeight: 220 }); $("#use_use").jqxDropDownList({ theme: theme, source: srcUse, width: 90, height: 23, dropDownHeight: 156 }); $("#time").jqxNumberInput({ inputMode: 'simple', spinMode: 'simple', theme: theme, width: 70, height: 23, min: 0, decimalDigits: 2, spinButtons: true }); $("#amount_is_weight").jqxCheckBox({ theme: theme, width: 120, height: 23 }); @@ -168,7 +168,7 @@ filtermode: 'excel', columns: [ { text: 'Ingredient naam', datafield: 'name', width: 525 }, - { text: 'Soort', datafield: 'type', align: 'center', cellsalign: 'center', width: 100 }, + { text: 'Soort', datafield: 'type', align: 'center', cellsalign: 'center', width: 110 }, { text: 'Gebruik', datafield: 'use_use', align: 'center', cellsalign: 'center', width: 100 }, { text: 'Tijd', datafield: 'time', width: 90, align: 'right', cellsalign: 'right', cellsformat: 'f2' }, { text: 'Voor. gr/ml.', datafield: 'inventory', width: 110, align: 'right', cellsalign: 'right' },