Skip to main content
Participant
March 9, 2012
Answered

Javascript pop up calendar

  • March 9, 2012
  • 3 replies
  • 19154 views

Hi there,

Does anyone know how I can implement a javascript pop up calendar in my filable Acrobat X form so

dates can be entered easily into a field.

I have inverstigated and came across http://www.formrouter.com/tools/

however this is for versions 9 and under.

This topic has been closed for replies.
Correct answer George_Johnson

It should work fine with Acrobat 10, but the toolbar buttons will appear in the custom tools panel instead of the toolbar area until you drag them to the Quick Tools area.

3 replies

annh75282930
Participant
June 29, 2016

Does anyone know how to add this to the Creative Cloud version?

try67
Community Expert
Community Expert
June 29, 2016

Just like previous versions. The path will probably be something like (on a Windows machine):

C:\Program Files(x86)\Adobe\Acrobat DC\Acrobat\Javascripts

Participant
November 6, 2014

Has anyone noticed the form router pop up calendar doesn't have a 31st August?! It then skips a day on September, so it catches up with itself... I can't find a way to fix this. Frustrating!

Inspiring
November 6, 2014

That is because the number of days for August in the script is wrong.

For a form one needs to edit the document level script "FRCalendarClass" and change the code about line 313 from:

case 8: //"August":

    numDays = 30;

    break;

to:

case 8: //"August":

    numDays = 31;

    break;

A similar change to the folder level script need to be made so any new uses of this tool will provide the correct data for August.

Participant
November 6, 2014

That's great! Thanks for your help - I'll give that a try tomorrow!

George_JohnsonCorrect answer
Inspiring
March 9, 2012

It should work fine with Acrobat 10, but the toolbar buttons will appear in the custom tools panel instead of the toolbar area until you drag them to the Quick Tools area.

VickiTuchAuthor
Participant
March 9, 2012

Thank you for yoour response it is much appreciated! I've installed it and works wonderfully! Job done!

Participating Frequently
January 29, 2013

VickiTuch, how did you install the script? I'm not sure where to save the unzipped folder. Any assistance would be greatly appreciated!

Thanks in advance,

Trish