Here's what I would like to do:
var f = this.getField("checkBoxField");
f.onMouseUp(); // But there's no such function
How to programmatically trigger MouseUp event on a checkbox field?
Thank you.
Here's what I would like to do:
var f = this.getField("checkBoxField");
f.onMouseUp(); // But there's no such function
How to programmatically trigger MouseUp event on a checkbox field?
Thank you.
var myChk = getField("Chk.HighlightMe");
if(myChk.isBoxChecked(0))
{
myChk.fillColor = color.transparent; //You could put something else between the curly braces.
}
else
{
myChk.fillColor = color.yellow;
}
StevenD