开发者

Adding events as json array in FullCalendar?

I have a web page (written with PHP/Zend) with a full calendar component which is driven by a combo-box. This combo-box is used to switch from one calend开发者_高级运维ar to another. Each time the user changes the value of the combo-box, we fetch the events in the database and "json" them as an array to the JavaScript. Then, we erase all events from the present calendar (empty current calendar) and add the newest event... but it does not work.

As the query to obtain all the events between two dates is long to execute we want to make it once for each calendar (each time user change the value of the combo-box).

My JavaScript code where $('#planning').val() is the combo-box value. The result variable contains a JSON array which has been validate.

<script type="text/javascript">
$(document).ready(function()
{
    $("#planning").change(function()    {
        $.post(
            '/Jerome/public/index/update-calendar', 
            { planning: $('#planning').val() },
            function(result) {
                $('#calendar').fullCalendar('removeEvents');
                $('#calendar').fullCalendar(result); //not working 
                    $('#calendar').fullCalendar( 'addEventSource',result);//not working
                $('#calendar').fullCalendar( 'refetchEvents' ); //anything change
                            $('#calendar').fullCalendar( 'rerenderEvents' ); //anything change
                });
        });     

});

</script>


It looks to me like your issue is when you're trying to load the new events. Full Calendar wouldn't know what to do with your JSON object try replacing...

$('#calendar').fullCalendar(result);

With..

$('#calendar').fullCalendar( 'addEventSource', result )

Here is a link to documentation.

I hope this helps!

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜