/* ============================================================================= SET CHECK BOK RECORDS nella modalità di gestione, nella visualizzazione dei records, la funzione setta il check box di ogni record cliccando sulla riga relativa al record selezionato ============================================================================= */ function setCheckboxColumn(theCheckbox){ if (theCheckbox.checked == true) { theCheckbox.checked = false; return true; } else if (theCheckbox.checked == false) { theCheckbox.checked = true; return true; } } /* ============================================================================= CAMPO FORM NON MODIFICABILE in un form, se questa funzione è riferita ad un campo select, impedisce che il valore selezionato di default venga modificato ============================================================================= */ function notModifySelect(selObj,value,restore) { if (selObj.value != value) { selObj.value = value; window.alert('Attenzione!\nQuesto campo non è modificabile!'); } } function notModifyRadio(radioObject,defaultValue) { //if (this.value != defaultValue) { //for (var i=0; i