Anyone familiar with Continuous Calendar? This powerful calendar lacks sample codes.
How do you select a date range programmatically?
The example shows it can be done. I have gone through the source code but couldn’t figure out how they did it.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is how you can do it (replace the dates with yours’
$('#myContainer').append('<input type="hidden" class="startDate" value="' + '05/22/2012' + '" /><input type="hidden" class="endDate" value="' + '05/25/2012' + '"/>')or to do it onClick:
Here is the running code: ContinuousCalendar on jsFiddle