I am creating a vacation request form. Is there a way fill in the date square with color without covering the number (Translucent) when a user clicks on the date?
Arobat 8.1.3
I am creating a vacation request form. Is there a way fill in the date square with color without covering the number (Translucent) when a user clicks on the date?
Arobat 8.1.3
// If this field's background color is transparent...if (color.equal(event.target.bgColor, color.transparent)) { // Set this field's background color to yellowevent.target.bgColor = color.yellow; } else { // Set this field's background color to transparentevent.target.bgColor = color.transparent; }
George