Version:v8.3p_2013-05-23/Pro
Browser: Firefox 20.0.1, safari 6.0.1
Printed timeline does not show body text of the event and when a custom eventWindowStyle is used the background is transparent. Must i use a DataSet without a value in eventWindowStyle? Kind regards
Paul
demo( modified version
http://localhost:8080/isomorphic/system/reference/SmartClient_Explorer.html#databoundTimeline)
********
var developers = [
{ name: "charlesMadigen", title: "Charles Madigen" },
{ name: "tamaraKane", title: "Tamara Kane" },
{ name: "darcyFeeney", title: "Darcy Feeney" },
{ name: "kaiKong", title: "Kai Kong" },
{ name: "shellyFewel", title: "Shelly Fewel" },
{ name: "garretMonroe", title: "Garret Monroe" }
];
var _calStart = isc.DateUtil.getStartOf(new Date(2012, 6, 5), "W");
var _calEnd = _calStart.duplicate();
_calEnd.setDate(_calEnd.getDate() + 20);
isc.Timeline.create({
ID: "timeline",
height: 451,
startDate: _calStart,
endDate: _calEnd,
dataSource: tasks,
autoFetchData: true,
lanes: developers,
headerLevels: [ { unit: "week" }, { unit: "day" } ],
canResizeTimelineEvents: true,
canEditLane: true,
autoDraw:false,
showEventDescriptions: true,
labelColumnWidth: 120
});
isc.Button.create({
ID:"bprint_01",
autoDraw:false,
title: "Print",
click : 'isc.Canvas.showPrintPreview(timeline ,null,{printButtonTitle :"Print", title:"Print"})'
});
isc.VLayout.create({
members:[
bprint_01,
timeline
],
width:1200,
ID:"Layout001",
autoSize:true,
autoDraw:true
});
Browser: Firefox 20.0.1, safari 6.0.1
Printed timeline does not show body text of the event and when a custom eventWindowStyle is used the background is transparent. Must i use a DataSet without a value in eventWindowStyle? Kind regards
Paul
demo( modified version
http://localhost:8080/isomorphic/system/reference/SmartClient_Explorer.html#databoundTimeline)
********
var developers = [
{ name: "charlesMadigen", title: "Charles Madigen" },
{ name: "tamaraKane", title: "Tamara Kane" },
{ name: "darcyFeeney", title: "Darcy Feeney" },
{ name: "kaiKong", title: "Kai Kong" },
{ name: "shellyFewel", title: "Shelly Fewel" },
{ name: "garretMonroe", title: "Garret Monroe" }
];
var _calStart = isc.DateUtil.getStartOf(new Date(2012, 6, 5), "W");
var _calEnd = _calStart.duplicate();
_calEnd.setDate(_calEnd.getDate() + 20);
isc.Timeline.create({
ID: "timeline",
height: 451,
startDate: _calStart,
endDate: _calEnd,
dataSource: tasks,
autoFetchData: true,
lanes: developers,
headerLevels: [ { unit: "week" }, { unit: "day" } ],
canResizeTimelineEvents: true,
canEditLane: true,
autoDraw:false,
showEventDescriptions: true,
labelColumnWidth: 120
});
isc.Button.create({
ID:"bprint_01",
autoDraw:false,
title: "Print",
click : 'isc.Canvas.showPrintPreview(timeline ,null,{printButtonTitle :"Print", title:"Print"})'
});
isc.VLayout.create({
members:[
bprint_01,
timeline
],
width:1200,
ID:"Layout001",
autoSize:true,
autoDraw:true
});
Comment