Jump to content

Phone Number Pick List


gdellaiera

Recommended Posts

I'm working on a business card that has 3 lines for phone numbers with 2 required and 1 being optional. For the optional line, we want the ability for the user to pick one of 4 options as well as the option to be left blank. I've tried creating a pick list, but then the user cannot add their phone number. I'm a little lost as to how to go about this. Any and all help is appreciated! Thanks!
Link to comment
Share on other sites

Are you using the Define HTML Form (Web DataCollect) feature? It doesn't have the capacity to show a "combo" box with both a drop-down list and a free-form edit box. I would make a pick list item called "Other" and have an edit box whose value gets used when "Other" is selected in the pick list.
Link to comment
Share on other sites

  • 1 month later...
I am also stuck on how to do this. I don't see any follow up so I'll ask... I tried to do what you suggested, creating a rule to use the "other" field when other is selected but it doesn't work. How would you suggest doing this? I am using this item on Digital Storefront. Thanks in advance for the help.
Link to comment
Share on other sites

I am also stuck on how to do this. I don't see any follow up so I'll ask... I tried to do what you suggested, creating a rule to use the "other" field when other is selected but it doesn't work. How would you suggest doing this? I am using this item on Digital Storefront. Thanks in advance for the help.

Something like this:

if (Field("Number3") == "Other")
   return Field("Number3Other");
//else
return Field("Number3");

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...