Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

Calendar Event name in Week tab

$
0
0
SmartClient Version: v10.0p_2014-10-22/Enterprise Deployment (built 2014-10-22)

Hello,

i got simple case like this:
Code:

        public void onModuleLoad() {
                CalendarEvent event = new CalendarEvent();
                event.setName("Title");
                event.setStartDate(new Date());
                Date datePlusTwoHours = new Date(new Date().getTime()+7200000);
                event.setEndDate(datePlusTwoHours);
                event.setDescription("Description");
               
                Calendar cal = new Calendar();
                cal.addCalendarEvent(event);
                cal.draw();
}

And output is this:
http://prntscr.com/604ll1


How can i show event name on that event, on showcase its simply created, in my case i cant set it to show up.
Hope this time Ill get some answer.
Regards, Jakov.

Viewing all articles
Browse latest Browse all 4756

Trending Articles