SAP Adobe form How to change text field value to upper | Community
Skip to main content
Lymleon
June 17, 2019
Solved

SAP Adobe form How to change text field value to upper

  • June 17, 2019
  • 5 replies
  • 12645 views

Background

I have 2 Floating Field of Text Field type that are bind to same Context.

I would only like to have one of them to be shown in all UpperCase.

I've tried to include the below in its layout:ready

this.rawValue = this.rawValue.toUpperCase();

But with the above, it changes the rawValue of the 2nd Text Field.

Are there are any way to decoupled the behaviour?

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 _Bruce_Robertson

Hi,

I don't think you can do what you are after without having a second floating field, one that is not bound but has a calculate event that takes the value from the other floating field and converts it to uppercase.

The code you have is fine, though if the value can be null you will get an exception (as null does not have a toUpperCase() method)

There is no equivalent of the text-transform CSS styling

Regards

Bruce

5 replies

Mayank_Gandhi
Adobe Employee
Adobe Employee
June 17, 2019

Try this simple JS:

TextField1.rawValue=(TextField1.rawValue).toUpperCase();

Lymleon
LymleonAuthor
June 17, 2019

Thanks for the reply but l’ve tried the code you provided and both the rawValue are still displayer in caps

_Bruce_Robertson
_Bruce_RobertsonAccepted solution
Level 10
June 18, 2019

Hi,

I don't think you can do what you are after without having a second floating field, one that is not bound but has a calculate event that takes the value from the other floating field and converts it to uppercase.

The code you have is fine, though if the value can be null you will get an exception (as null does not have a toUpperCase() method)

There is no equivalent of the text-transform CSS styling

Regards

Bruce

Mayank_Gandhi
Adobe Employee
Adobe Employee
June 19, 2019

Agree with Bruce here or if there is some explicit event that you can fire on another field to have it in lower case.

Lymleon
LymleonAuthor
June 20, 2019

Thanks for the input! Sadly, what I’m building is a form of PDF letter and there isn’t any event to be triggered after loading.

I’m doing the pre-processing of data before binding them to each individual floating fields.

thanks