Hello.
It is necessary to check on the form whether the user has changed the form element type Select.
How to do it?
ps tried so
<select NAME="TEXT_FREQUENCY_TYPE_${row.ID}"> <option SELECTED VALUE="${row.FREQUENCY_TYPE}">${row.FREQUENCY_TYPE}</option> </select> <script> function GetValue () { var result = []; [].forEach.call(document.querySelector('form').elements, function (el) { if (['checkbox', 'radio', 'button', 'submit'].indexOf(el.type) === -1 || el.checked) { var defValue = el.defaultValue; var currvalue = el.value; if (defValue == currvalue) { result.push(el.name + ' :: ' + el.value+' :: '+" ΠΠ½Π°ΡΠ΅Π½ΠΈΠ΅ Π½Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΠ»ΠΎΡΡ"); } else { result.push(el.name + ' :: ' + el.value+' :: '+" ΠΠ½Π°ΡΠ΅Π½ΠΈΠ΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΠ»ΠΎΡΡ Ρ " + defValue + "\n Π½Π° " + currvalue); } </script> result:
TEXT_FREQUENCY_TYPE_1 :: Minutes :: The value has changed from undefined to Minutes