0
New Here
,
/t5/acrobat-discussions/change-field-background-color-with-javascript/td-p/15100418
Jan 19, 2025
Jan 19, 2025
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
TOPICS
JavaScript
,
PDF
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 ACCEPTED SOLUTION
Community Expert
,
LATEST
/t5/acrobat-discussions/change-field-background-color-with-javascript/m-p/15100488#M493290
Jan 19, 2025
Jan 19, 2025
Copy link to clipboard
Copied
Change fillcolor to fillColor (upper case C).
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/acrobat-discussions/change-field-background-color-with-javascript/m-p/15100488#M493290
Jan 19, 2025
Jan 19, 2025
Copy link to clipboard
Copied
Change fillcolor to fillColor (upper case C).
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

