I am not able to assign custom list with the event.list. I am a Salesforce Developer
I am using it in Visual Force page.
My code is:
This is the list:= "event_ass_list"
dp.event.list=[
<apex:repeat value="{!event_ass_list}" var="evt">
{
start: '{!evt.StartDateTime__c}',
end: '{!evt.EndDateTime__c}',
id: '{!evt.id}',
resource: '{!evt.User__c}',
text: '{!evt.Name}'
},
</apex:repeat>
];
dp.update();
I am not able to see the events on scheduler