Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
Beginner advice :
1. script by default today's date how to express
2. default input convert lowercase to uppercase
thanks
Solved! Go to Solution.
Hi,
to populate todays date use FormCalc in the docReady event.
if ($.isNull) then $ = Num2Date(Date(), "DD/MM/YYYY")else $.rawValueendif
if ($.isNull) then
$ = Num2Date(Date(), "DD/MM/YYYY")
else
$.rawValue
endif
To change lowercase to uppercase use JavaScript in the change event of your field.
xfa.event.change = xfa.event.change.toUpperCase();
View solution in original post
thanks very much
Views
Likes
Replies