Beginner advice :
1. script by default today's date how to express
2. default input convert lowercase to uppercase
thanks
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
to populate todays date use FormCalc in the docReady event.
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();
Hi,
to populate todays date use FormCalc in the docReady event.
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();
thanks very much
Views
Replies
Total Likes