| Issue 1725: | replace the prompt on new Event | |
| 1 person starred this issue and may be notified of changes. | Back to list |
What i want to do is:
when i click on a day, instead of popping up the prompt window (with the "Event Title"...etc) to redirect to a custom page with a form i have implement. what i have currently done is when i construct the calendar, i bind to the dayClick a function to redirect me ( implemented as
var cal = $('selector').fullCalendar({
[options],
dayClick: function(){ /*redirect code*/ },
[more options]
});
)
, but i will only be redirected after i close the prompt win.
So, how do i get rid of the prompt???
Mar 7, 2013
#1
rousoj...@gmail.com
Mar 7, 2013
How about showing the solution :P
Mar 7, 2013
remove or change the "select" option
var cal = $('selector').fullCalendar({
[options],
dayClick: function(){ /*redirect code*/ },
select: <your function>
[more options]
});
Mar 8, 2013
Thanks, i was wondering something like that :)
Aug 23, 2013
(No comment was entered for this change.)
Status:
Done
|
|
| ► Sign in to add a comment |