Log in

View Full Version : multiple date selector



shiva
05-17-2007, 06:14 AM
I want a calendar which could allow us to select multiple dates like 1/4/2007,4/4/2007,5/4/2007 and so on.
The selected dates should be highlighted and displayed in a textbox or some other display.

djr33
05-17-2007, 07:59 AM
What calendar?

Displaying them in a textbox is quite easy.
something like--
onClick="document.forms.myform.mybox.value+='5/16/07';"

We need a lot more information to be able to help, though, since that is very vague.

tech_support
05-17-2007, 08:15 AM
onClick="document.forms['myform'].elements['mybox'].value+='5/16/07';"