You need to sign in to do that
Don't have an account?
Event Calender in VF page
Hi All,
I am in need of some code snipet where i will be displaying a calender in vf page (Not Full page calender) and need to display all the events by week, month and the same will be displayed in mobile.
Regards
I am in need of some code snipet where i will be displaying a calender in vf page (Not Full page calender) and need to display all the events by week, month and the same will be displayed in mobile.
Regards
I have used above library in the past. I hope this will help you.
i need do display the info entered in object in full calendar , can you please guide me?
regards,
phani.
<apex:stylesheet value="{!URLFOR($Resource.fullCalendarJS, 'fullcalendar-2.4.0/fullcalendar.css')}"/>
<apex:stylesheet value="{!URLFOR($Resource.fullCalendarJS, 'fullcalendar-2.4.0/fullcalendar.print.css')}" html-media="print"/>
<apex:includeScript value="{!URLFOR($Resource.fullCalendarJS, 'fullcalendar-2.4.0/lib/moment.min.js')}"/>
<apex:includeScript value="{!URLFOR($Resource.fullCalendarJS, 'fullcalendar-2.4.0/lib/jquery.min.js')}"/>
<apex:includeScript value="{!URLFOR($Resource.fullCalendarJS, 'fullcalendar-2.4.0/fullcalendar.min.js')}"/>?
<script src="{!URLFOR($Resource.jquerydll, 'jquery-ui-1.11.4.custom/jquery-ui.js')}"/>
<script src="{!URLFOR($Resource.jquerydll, 'jquery-ui-1.11.4.custom/jquery-ui.min.js')}"/>
<script>
//We need to wrap everything in a doc.ready function so that the code fires after the DOM is loaded
$(document).ready(function() {
//Call the fullCallendar method. You can replace the '#calendar' with the ID of the dom element where you want the calendar to go.
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},