Hi.
I've recently started implementing the calendar feature and want to make use of the drag and drop editing to change the date-time. But despite following the instructions it doesn't seem to work (latest Chrome, latest mydbr).
What I have for code is:
SELECT 'dbr.calendar', 1000;
SELECT 'dbr.calendar.options', 'defaultView', 'week';
SELECT 'dbr.calendar.options', 'weekNumbers', 0;
SELECT 'dbr.calendar.options', 'editable', '', 'sp_DBR_calendar_edit', 'id';
SELECT 'dbr.calendar.options', 'event.editable', 'session_name';
SELECT 'dbr.calendar.options', 'event.id', 'id';
SELECT ea.session_start, ea.session_end, ea.session_name, '' AS style, ea.id FROM mydb.event_postings AS e INNER JOIN mydb.event_agendas AS ea;
Is there anything I am missing to make this work? Does it only work with the dynamic fetching or can it be used with the directly fetched data as I have above?