Skip to main content
Known Participant
March 3, 2019
Answered

enter Y for yes N for no

  • March 3, 2019
  • 1 reply
  • 1415 views

I have this one text field I want the user to enter Yes or No. To save time is there a javascript to allow Yes to be entered when they just type in y or n so then No would get populated in the same field. I use to have a drop down, but I don't want to use that option. Does anyone know a little javascript that would enable me to do this? Thanks.

This topic has been closed for replies.
Correct answer try67

You can use this code as the field's custom Format script:

if (event.value.toUpperCase()=="Y") event.value = "Yes";

else if (event.value.toUpperCase()=="N") event.value = "No";

else event.value = "";

1 reply

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
March 3, 2019

You can use this code as the field's custom Format script:

if (event.value.toUpperCase()=="Y") event.value = "Yes";

else if (event.value.toUpperCase()=="N") event.value = "No";

else event.value = "";

pdfUser1Author
Known Participant
March 3, 2019

Hi Gilad, just another quick question regarding this script. I have at least a dozen different sizes like 1 5/8", 2 3/8", 2 78", 4", etc. How can I apply this bit of code to do the same this as with the yes/no. Is is possible to use an alphabet code like - type into the text field (a) for 1 5/8", (b) for 2 3/8", (c) for 2 7/8" and so on and the last option would be other?

try67
Community Expert
Community Expert
March 3, 2019

Sure. There doesn't have to be any relation between the entered value and the new one.

For example:

if (event.value.toUpperCase()=="A") event.value = "1 5/8\"";