skip to Main Content

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, &quot;false&quot;) ; initCheckBox(this.id);transaktionObj.inputEnable(this.checked,&quot;Gleitzeitmaxstunden&quot;);}"> <label class="form-check-label" for="Gleitzeitmaxstundenenable">Gleitzeit max.</label> </div> </label>…

VIEW QUESTION
Back To Top
Search