question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Mini calendar to control main calendar

See original GitHub issue

Originally reported on Google Code with ID 167

I am trying to build an interface like Apples iCal, where there is a small
"Month" controller on the bottom left. 

It would be great if we could utilize full calendars existing code to
generate this calendar.. 

Mini cal would read same events list and give the td for that date a
"hasEvent" class (See this is already an excepted improvement), but not
display the events on the mini-cal. 

clicking on a day would call gotoDate for that date in the main "Parent"
calender. 

Simple control to go forward and back a month.. 

Reported by incontrolsolutions on 2009-11-04 18:43:32

Imported with 27 stars.

Issue Analytics

  • State:open
  • Created 8 years ago
  • Reactions:13
  • Comments:19 (18 by maintainers)

github_iconTop GitHub Comments

1reaction
arshawcommented, Aug 19, 2015
i was able to accomplish this exact thing using a jquery datepicker.
here's the code I used to tie it in:

$j('#miniCalendar').datepicker({
    dateFormat: 'DD, d MM, yy',
        onSelect: function(dateText,dp){
            $j('#calendar').fullCalendar('gotoDate',new Date(Date.parse(dateText)));
            $j('#calendar').fullCalendar('changeView','agendaDay');
           }
    });
the important thing is to set the dateFormat property correctly so that you can parse
it correctly for the goToDate call.

Here's a screenshot of my calendar:

Reported by sneed424 on 2010-01-21 05:18:14


- _Attachment: calendar with mini calendar control.png
![calendar with mini calendar control.png](https://storage.googleapis.com/google-code-attachments/fullcalendar/issue-167/comment-5/calendar with mini calendar control.png)_
0reactions
acerixcommented, Mar 18, 2022

For reference, example with <input type=date> in header for this:

https://codepen.io/acerix/pen/MWrymYL

Read more comments on GitHub >

github_iconTop Results From Across the Web

Mini Calendar on the Mac App Store
Be one click away from your monthly calendar! Mini Calendar is a lightweight application, which helps to access monthly calendar quickly and easily....
Read more >
The 8 Best Calendar Apps to Stay Organized in 2022
Find the best calendar app to keep your life organized. Whether you value scheduling features or customization, there's an app for you here....
Read more >
Change the calendar view
The calendar view can be customized to display different day ranges, a mini calendar, and events from different categories. At the bottom of...
Read more >
The 6 best calendar apps for iPhone in 2022
Plus, you can even delegate control of any of your calendars—to an assistant, ... The default DayTicker view is clean and succinct.
Read more >
The Ultimate Guide To Google Calendar
Beneath the default duration settings is the option to create Speedy Meetings. Check the box and 30-minute meetings will automatically be scheduled to...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found