Copy link to clipboard
Copied
I have developed a form with multiple fields with a a light gray background as set in the properties field. Once the user "Locks" the fields I want to change the background color of the fields to white. Here is the code I'm using:
function DisableField(cFieldName)
{
var oFld = getField(cFieldName);
if(oFld) {
oFld.readonly=true;
oFld.fillcolor=color.white;
}
}
The fields lock but the background color does not. Any help here would be greatly appreciated. Thanks
Copy link to clipboard
Copied
Change fillcolor to fillColor (upper case C).
Copy link to clipboard
Copied
Change fillcolor to fillColor (upper case C).
Find more inspiration, events, and resources on the new Adobe Community
Explore Now