Hi DKinsley ,
I have had a similar Problem, and solved it this way:
You need to amend the JavaScript code in that way, that you change every instance on every masterpage, where the item is inherited.
In you case the code should look probably like this:
Form1.Subform4.Table2.Row1.Overall[0]::change - (JavaScript, client)
- if ($.boundItem(xfa.event.newText) == "Green") {
- xfa.resolveNode("pageSet.NameofMasterpage[0].OverallTop").border.fill.color.value = "204, 255, 204";
- }
- if ($.boundItem(xfa.event.newText) == "Red") {
- xfa.resolveNode("#pageSet.NameofMasterpage[1].OverallTop").border.fill.color.value = "204, 255, 204"; --> this is the same color as above
- }
- if ($.boundItem(xfa.event.newText) == "Yellow") {
- xfa.resolveNode("#pageSet.NameofMasterpage[2].OverallTop").border.fill.color.value = "255, 255, 0";
- }
I'm not that good in coding, so perhaps the code still needs to get running, but I hope it Points you to the right direction.
Best
Dietmar