function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Vadivel MuruganVadivel Murugan 

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:

User-added image