You need to sign in to do that
Don't have an account?

Full Calendar in Jquery
I have create a visualforce page to use fullcalendar in jquery. Here i have using the views: type is time. when i have use time line type my header date format not changed using columnFormat:'DD/MM/YYYY'. If any one know reply me.
views: {
timelineThreeDays: {
type: 'timeline',
slotLabelInterval: '12:00:00',
titleFormat: 'DD/MM/YYYY',
duration: { days: 5 }
},
resourceLabelText: 'Technicians Name',
resources: [
<apex:repeat value="{!AllVisitList}" var="e">
{
'id': '{!e.techid}',
'title' : '{!e.techname}'
},
</apex:repeat>
],
events: [
<apex:repeat value="{!AllVisitList}" var="e">
{
title: '{!e.title}'+"\n"+'{!e.serviceType }'+"\n"+'{!e.siteName}',
start: '{!e.startString}',
end: '{!e.endString}',
allDay: false,
url: '{!e.url}',
className: '{!e.className}',
resourceId: ['{!e.Techresource}']
},
</apex:repeat>
],
columnFormat: 'DD/MM/YYYY' //Not Working for when Type is 'Timeline' , but its work for agenda,basic. But not work in timeline type.
});
Screen Shot:

views: {
timelineThreeDays: {
type: 'timeline',
slotLabelInterval: '12:00:00',
titleFormat: 'DD/MM/YYYY',
duration: { days: 5 }
},
resourceLabelText: 'Technicians Name',
resources: [
<apex:repeat value="{!AllVisitList}" var="e">
{
'id': '{!e.techid}',
'title' : '{!e.techname}'
},
</apex:repeat>
],
events: [
<apex:repeat value="{!AllVisitList}" var="e">
{
title: '{!e.title}'+"\n"+'{!e.serviceType }'+"\n"+'{!e.siteName}',
start: '{!e.startString}',
end: '{!e.endString}',
allDay: false,
url: '{!e.url}',
className: '{!e.className}',
resourceId: ['{!e.Techresource}']
},
</apex:repeat>
],
columnFormat: 'DD/MM/YYYY' //Not Working for when Type is 'Timeline' , but its work for agenda,basic. But not work in timeline type.
});
Screen Shot: