| Issue 518: | Passing parameter more than Starttime & Endtime | |
| 1 person starred this issue and may be notified of changes. | Back to list |
I got a calendar having 2 select boxes showing doctor list & clinic list, namely doctorcode1, cliniccode1... I fetch the events by JSON via PHP like this
events: 'appoint.php?action=listCalendar&doctor='+$('#doctorcode1').val()+'&clinic='+$('#cliniccode1').val(),
however, the firebug showing the parameters as initial values, not the values changed from select boxes...
Jun 14, 2010
I solve the issue by using $.ajax on event fetching...
Jun 15, 2010
glad you got it to work
Status:
Done
|
|
| ► Sign in to add a comment |
I also use the following:- $('#calendar').fullCalendar( 'refetchEvents' ); it seems that the added parameters were not read, & still send the same parameters as initial