Avatar

Level 10

On the change event of the checkboxes and assuming that it has been setup using the defaults (0 is off and 1 is on), enter this javascript code:

if (this.rawValue == 1){

     TextFieldName.access = "readOnly"

} else {

     TextFieldName.access = "";

}

Paul