viewChange

Fires when calendar navigates to the next or previous view.


<div id="calendar" ></div>

<script type="text/javascript">
    $(function () {
        $("#calendar").shieldCalendar({
            events: {
                viewChange: function(e) {
                    alert("View is Changed");
                }
            }
        });
    });

</script>