Jquery – TypeScript: How to validate input fields with form checkboxes
I have a form with several checkboxes and corresponding input fields. <div class="group-wrap input-element" id="gr_"> <div class="label-bar"> <label> <div class="custom-control form-check"> <input class="form-check-input" value="1" type="checkbox" id="Gleitzeitmaxstundenenable" name="Gleitzeitmaxstundenenable" onmouseup="{setActFeld(this.id);}" onfocus="{ setActFeld(this.id);}" onclick="{setConfirmedChange(this.id, "false") ; initCheckBox(this.id);transaktionObj.inputEnable(this.checked,"Gleitzeitmaxstunden");}"> <label class="form-check-label" for="Gleitzeitmaxstundenenable">Gleitzeit max.</label> </div> </label>…