Hello,
I have a checkbox that I display on my form based off of the value of another checkbox.
I use javascript to display it. The problem I am having is that it works fine in my TEST system.
When I publish out to Production the checkbox field shows but only the field name displays, no checkbox is present.
If I remove all javascript from the form the checkbox shows. So, I'm thinking it's javascript related, but why would it work in test and not production?
When I use the browser debugger its stepping through all of my logic.
if (performance_var == "Checked)") {
ShowField("INSTALL_PERFORMANCE");
}
else
{
HideField("INSTALL_PERFORMANCE");
}
Scratching my head on this one. Any help is Welcome.
Regards,
Will