Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<input type="submit" value="Update table!" onclick="this.form.elements['txtfld'].value = 'New value!';">
<script Language = "javascript" >
function checkBoxes(){
boxArr = new Array("txtCause")
dataFound = "Outstanding"
for (x=0; x<boxArr.length; x++){
boxVal = eval ("document.frmPending." + boxArr[x] + ".value")
if (boxVal != ""){
dataFound = "Pending"
}
}
document.frmPending.txtStatus.value = dataFound
}
</script>
onSubmit="checkBoxes()"
boxVal = eval ("document.frmPending." + boxArr[x] + ".value")
boxVal = document.frmPending.elements[boxArr[x]].value;