Adam Shaw
Adam Shaw
``` For jQuery-UI > 1.8 you need to specify position as well as z-index in CSS. And it needs to be specified for the input field as datepicker retrieves the...
``` I made a script to add a datapicker inline on fullcalendar month change and year change on header or side( make your won design). Myself its works fine Please...
``` If you are using JQuery UI (option "theme: true"), may be you are interested on this function: function addCalButton(where, text, id) { var my_button = '' + '' +...
``` I had the same need, but instead of creating a function that modify the rendered code, I decided to modify the fullCalendar and add the functionality to create the...
``` The solution specified by @drupas (comment 17) works great. Wish this gets included into the main library with toggle button support. ``` Reported by `brsanthu` on 2012-12-20 21:42:38
``` Good solution from dupras, I can get buttons to work however I can't set the text (only shows undefined) Any clue what I need to do to define the...
``` Dupras' soltuion works great, however, I had to add an extra line to get the proper label for the button. Before: else if(match = buttonName.match(/^{(\w+):(.+)}$/)){ if(typeof(window[match[2]]) == "function") {...
``` I am testing Durpas solution on 1.6.1 Its not working because line 731 is having space split $.each(buttonStr.split(' ') ... how to overcome and add a button with minimum...
``` Dupras' solution is great and Berenyi's fix is just what I needed. I created a toggle button (who's function just toggles basic view on/off for week or day views)...
``` I figured I would chime in here as I needed to add some custom buttons to the calendar header. (Note this works in version 1.6.1 of FullCalendar, not sure...