How can I set a text field to convert all text entered to upper case when populated? | Community
Skip to main content
New Participant
September 6, 2013
Solved

How can I set a text field to convert all text entered to upper case when populated?

  • September 6, 2013
  • 34 replies
  • 28825 views

I want to have all entered text populated into specific text fields to automatically convert to upper case. I am working in LiveCycle Designer ES2.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by jcytrny

I am not sure how to place the code to get it working. Cannot get it to work.

34 replies

New Participant
December 4, 2013

I have uploaded the form, please check the below URL

https://workspaces.acrobat.com/?d=1vGCuh5UZeV4RMtV0Idt7g

Thanks,

Vipin

New Participant
December 4, 2013

@ Vipin Bhargava in reference to post #21.  I do not see the "new form" that replaces the text in the same textfield.  Can you share it with me? I would greatly appreciate it.

I have shared the new form, where value change in the same textfield.

Was this helpful? Yes   No

October 9, 2013

Thank you.

jcytrnyAuthor
New Participant
October 9, 2013

xfa.event.change = xfa.event.change.toLowerCase();

Sorry, you need the lower case code. See above. Just overwrite the Upper to Lower in your code. I do not have code for capitalizing the first word of each sentence. I only have code to capitalize the first letter only in a field. I have not yet encountered a need for the sentence issue.

Hope that helps.

October 9, 2013

No problem. I tried that but it keeps giving me an error.

Will that work with sentences? Because I do want the first word of the each sentence to stay uppercase.

Thanks for your help.

jcytrnyAuthor
New Participant
October 9, 2013

Sorry, got back very late last night.

Use this code in the change function for the text field

xfa.event.change = xfa.event.change.toUpperCase();

Joe Yuskaitis

JCY Tournaments LLC

201-203-1816 office

201-220-3049 mobile

201-625-6402 fax

joeyuskaitis@jcytournaments.com<mailto:joeyuskaitis@jcytournaments.com

October 9, 2013

Will you be able to send the email today?

New Participant
October 9, 2013

If you want to convert the uppercase into the lowercase you can use below script

xfa.event.change = xfa.event.change.toLowerCase(); 

You need to use this script on change event of textfield.

October 8, 2013

Thank you very much.

Sonya Patton

Administrative Assistant to the Director,

International Outreach Division

P.O. Box 140800 | Nashville, TN 37214-0800

PH 615.564.5000 :: FX 615.564.6000

spatton@gideons.org | www.gideons.org

jcytrnyAuthor
New Participant
October 8, 2013

I am heading to a meeting right now. Will send email later when I get back home.