Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Script to change user entered values to uppercase letters in Adaptive Forms

Avatar

Level 6

Hello all! I'm building adaptive forms in AEM and I need assistance with a rule or script to force user entered data from a text field to upper case letters. In Designer we used this JS: xfa.event.change=xfa.event.change.toUpperCase(); Wondering how to get this same functionality into the Adaptive side of forms.

thanks!

1 Accepted Solution

Avatar

Correct answer by
Level 6

@Mayank_Gandhi I got this figured out! Thank you so much for trying to help. Here is what worked: 

Event: Value Commit 

Code Editor: this.value=this.value.toUpperCase()

View solution in original post

11 Replies

Avatar

Employee Advisor

@nowackem XFA events are not for adaptive form. You can take 2 route:

 

1. you can use css:

to make a block of text have all capital letters, use text-transform: uppercase in your CSS selector. The text-transform property accepts three possible values: uppercase: Sets each word to uppercase in a text element.

 

2. JS:

var text = "Hello World!";
var result = text.toUpperCase();

 

CSS need to go in style editor or client libs and js will go in code editor. The event would be value commit,

 

Avatar

Level 6

@Mayank_Gandhi Thank you for your reply. I'm looking to use the JS option. I implemented the provided script but I'm not able to make it work. I do have the event set as Value Commit. Can you help me troubleshoot to figure out what I'm missing? Please let me know if you need other info from me to help me solve this. I appreciate it.

Avatar

Level 6

@Mayank_Gandhi I dont have a public site where I can publish these yet as we are not live just have a sandbox. I can send screenshots. Will that work?

Avatar

Correct answer by
Level 6

@Mayank_Gandhi I got this figured out! Thank you so much for trying to help. Here is what worked: 

Event: Value Commit 

Code Editor: this.value=this.value.toUpperCase()

Avatar

Employee Advisor

Of course you needed to set the value of the result back to the field. 

Avatar

Level 4

This is just the type of feature in needing. Though I'm wondering how to make this at the component level. Say we a dedicated competent for a particular reference number and that we wanted to always need it to be uppercase.

Guessing we could at your rule into the rule script mode of the content.XML for the component.

 

Or is there a better option ?

Avatar

Level 4

The approach we are testing today is using a guideBridge event handler.

 

guideBridge.on("elementValueChanged" , function(event, payload) {
    var component = payload.target; // Field whose value has changed
    if (component.cssClassName.includes("uppercase")) {
        var uValue = payload.newText.toUpperCase();
    	guideBridge.setProperty([component.somExpression],
            "value",
            [uValue]);
    }
})
 
On the individual component we can set the uppercase css class, or for components that always required uppercase we can set using the cssClassName in the  cq:template.

We are going to test this with our users soon.

Avatar

Employee Advisor

you can force the users to enter uppercase using the following regex [A-Z]+ in the field property

workflowuser_0-1681925700510.png

 

Avatar

Level 4

I have tried that but it does not 'force' the uppercase, it just tells them they have got it wrong. We want the user to enter as they like and for us to convert to uppercase, for display and for the binding to the data.

 

IainClucas_0-1681977079898.png

IainClucas_1-1681977101620.png

IainClucas_2-1681977117721.png