Hi,
Switching from Version SmartClient_v100p_2014-12-17_Pro to SmartClient_v100p_2014-12-18_Pro and above the timeline doesn't work anymore.
We also tested it with the latest nightly SmartClient_v100p_2014-12-19_Pro. It occurs in all browsers (Firefox 34, Chrome 39, IE11). There is a js-error in the console (TypeError: _1.body is null)
This code worked in the 2014-12-17 build, but doesn't work with >2014-12-18 builds.
Best Regards
Switching from Version SmartClient_v100p_2014-12-17_Pro to SmartClient_v100p_2014-12-18_Pro and above the timeline doesn't work anymore.
We also tested it with the latest nightly SmartClient_v100p_2014-12-19_Pro. It occurs in all browsers (Firefox 34, Chrome 39, IE11). There is a js-error in the console (TypeError: _1.body is null)
This code worked in the 2014-12-17 build, but doesn't work with >2014-12-18 builds.
Code:
isc.Timeline.create({ "width" : "100%", "height" : "100%", "overflow" : "auto", "hideUsingDisplayNone" : false, "startDate" : new Date(2014, 11, 15), "endDate" : new Date(2015, 0, 11), "firstDayOfWeek" : 1, "todayBackgroundColor" : "#E0E0E0", "showEventDescriptions" : false, "showEventHeaders" : false, "eventSnapGap" : 1.6, "labelColumnWidth" : 200, "alternateLaneStyles" : true, "laneFields" : [{ "name" : "title", "title" : " ", "type" : "text", "canEdit" : false } ], "lanes" : [{ "hierarchyLevel" : 0, "height" : 30, "name" : "1", "title" : "Muster, Max" }, { "hierarchyLevel" : 1, "height" : 30, "name" : "2", "title" : "Simon, Neal" } ], "data" : [{ "lane" : "1", "description" : "", "startDate" : new Date(2015, 0, 1, 0, 0), "backgroundColor" : "#74A5D2", "showDate" : true, "endDate" : new Date(2015, 0, 1, 23, 59), "name" : " " }, { "lane" : "1", "description" : "", "startDate" : new Date(2014, 11, 25, 0, 0), "backgroundColor" : "#74A5D2", "showDate" : true, "endDate" : new Date(2014, 11, 25, 23, 59), "name" : " " }, { "lane" : "1", "description" : "", "startDate" : new Date(2014, 11, 26, 0, 0), "backgroundColor" : "#74A5D2", "showDate" : true, "endDate" : new Date(2014, 11, 26, 23, 59), "name" : " " }, { "lane" : "2", "description" : "", "startDate" : new Date(2015, 0, 1, 0, 0), "backgroundColor" : "#74A5D2", "showDate" : true, "endDate" : new Date(2015, 0, 1, 23, 59), "name" : " " }, { "lane" : "2", "description" : "", "startDate" : new Date(2014, 11, 25, 0, 0), "backgroundColor" : "#74A5D2", "showDate" : true, "endDate" : new Date(2014, 11, 25, 23, 59), "name" : " " }, { "lane" : "2", "description" : "", "startDate" : new Date(2014, 11, 26, 0, 0), "backgroundColor" : "#74A5D2", "showDate" : true, "endDate" : new Date(2014, 11, 26, 23, 59), "name" : " " } ] })
Comment