For some reason the following code only seems to highlight the active form field. In other words, as soon the cursor moves to another form field the background color reverts to the default color. However, if i move the cursor back to the field with the conditional formatting the color pops back up???
var v = +event.value;
if (v == "IL") {
this.getField("ST15_1").fillColor = color.black;
} else {
this.getField("ST15_1").fillColor = color.transparent;
}