wrote:
wrote:
Hi Vitor,
You may need to set the description explicitly as well, as the renderer function for this implementation includes a description for the events as well.
Set it to a blank string, and it should work.
Kind Regards,
João Grazina
Hi Grazina,
I am having this problem also. But I am defining the title with the 'title:' property. By the way, the FullCalendarSample define the event title of resources, and below the title we can see 'undefined'. How can I solve this?
Thanks,
Roberto
Hi Roberto,
The undefined is usually caused by the empty Description property of the Event. In my case, it would continue displaying "undefined" altough I have set empty string, NullText() etc. for the Description. I solved it by simply hiding the Decription row of the Event with CSS:
SyntaxEditor Code Snippet
.fc-event-desc { display: none; }
Hope this helps.