fullcalendar events not showing results when set to json -


the ajax call result form web service returned below

"[{title:'111',start:'2013-08-09'},{title:'222',start:'2013-08-05'},{title:'333',start:'2013-08-10' }]" 

when string set "events" in fullcalendar calendar works fine

but when set msg.dashboardcalendardetails result of ajax calendar not show cells changed

i want set events json result service

here sample fiddle

http://jsfiddle.net/fk4sq/

event start , end dates must in iso 8601 format, 2013-08-28t19:10:00-04:00. can use fullcalendar $.fullcalendar.formatdate(from, format); convert date , time.

events: [{     title: 'event 1', start: '2013-08-28t19:10:00-04:00',      end: '2013-08-29t19:20:00-04:00', allday: false },{     title: 'event 2', start: '2013-08-28t16:25:00-04:00',     end: '2013-08-28t18:45:00-04:00', allday: true }] 

Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -