Add this script (changing the field name in the first line) to an Execute a JavaScript action of a Mouse Up trigger. And you can change the color to what ever you want to use. I just chose yellow because it was easy. Change the word transparent to white if you want the checkbox to have a whilte fill color.
Add this script (changing the field name in the first line) to an Execute a JavaScript action of a Mouse Up trigger. And you can change the color to what ever you want to use. I just chose yellow because it was easy. Change the word transparent to white if you want the checkbox to have a whilte fill color.
var myChk = getField("Chk.HighlightMe");
if(myChk.isBoxChecked(0))
{
myChk.fillColor = color.transparent;
}
else
{
myChk.fillColor = color.yellow;
}
You also want to start out with checkbox having the hightlight color displaying.
StevenD