Skip to main content
Participant
November 7, 2024
Question

Label on Fillable Form to Disappear when typing.

  • November 7, 2024
  • 1 reply
  • 361 views

I'm creating a fillable form.  One some areas, I want folks to enter a Qty. but is there a way to put the word "Qty." over the fillable text and have it dissapper when the user enters their number? They way I have it now, it's just a blue box that's editable for the user. 

This topic has been closed for replies.

1 reply

PDF Automation Station
Community Expert
Community Expert
November 7, 2024

Enter the following custom format script:

if(!event.value)

{event.value="Qty."}

try67
Community Expert
Community Expert
November 7, 2024

Just be aware this means the field can't have the Number format if you do it.