내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

How to force ALLCAPS in Date/Time Field

Avatar

이전 커뮤니티 멤버

I have searched in google for this and i found this

     // Current Date in MMM DD, YYYY style in uppercase.

     $.rawValue = Upper(num2date(date(), "DDMMMYY"))

but i don't want the current date, i want the date i select in the Date/Time Field.

i tried this but it didn't work

    $.rawValue = Upper($.rawValue)

can someone help me?

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 7

In the exit event for the date/time field put (in Formcalc):

$ = Upper($.formattedValue)

just make usre you have specified the dsiplay pattern you want in the object palette.

원본 게시물의 솔루션 보기

8 답변 개

Avatar

정확한 답변 작성자:
Level 7

In the exit event for the date/time field put (in Formcalc):

$ = Upper($.formattedValue)

just make usre you have specified the dsiplay pattern you want in the object palette.

Avatar

Level 10

Hi,

It depends on the language you are using: JavaScript or FormCalc in the Script Editor.

Upper is a FormCalc function, but .rawValue is JavaScript.

So if FormCalc try this in the exit event:

$ = Upper($);

if JavaScript try this in the exit event:

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

Hope that helps,

Niall

Good catch by whyisthisme, you probably have to use the Upper function on the formatted value.

Message was edited by: Niall O\'Donovan

Avatar

Level 10

Yeah, those don't work on the date field - I was trying to figure it out but didn't think of trying the formattedValue!

Avatar

Level 10

Yeah Jono,

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

...works!

Niall

Avatar

이전 커뮤니티 멤버

thanks to everybody

     Formcalc:

               

Works -->          $ = Upper($.formattedValue)

     Javascript

    

Works -->          this.rawValue = this.formattedValue.toUpperCase();

once again thank you

Avatar

Level 2

This works great but the date validation fails with this code in there (either formcalc or java) . I even took away all the validation filters and it still fails. This is annoying.

I just want an upper case MONTH YEAR that will pass without an error off a date drop down or user entry.

Thank you if anyone has a solution.

Avatar

Level 2

This looks like a valid solution for a single field/value, but is there an easier way to force ALL field values on a form to be uppercase? Perhaps at the form or master page level? I'd prefer not to have to add uppercase script to each field on my form, if possible.

Avatar

Level 1

For whom the code did'nt work try putting the codes mentioned

(for Javascript)

 

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

 

in Initialize event.

 

This has been verified to work only when we just bind the data, not talking about changing or inputing in interactive adobe forms.