Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    timeline printPrevie

    Smart Clinent Version: 9.0
    Browser: Firefox Verion 21.0
    Hello,
    the problem is:
    The printPreview shows the appointments in the wrong columns (see demo).
    Kind regards
    Paul

    Demo:(modified version of your demonstration
    http://www.smartclient.com/#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,
    //autoDraw: false,
    startDate: _calStart,
    endDate: _calEnd,
    dataSource: tasks,
    autoFetchData: true,
    lanes: developers,
    headerLevels: [ { unit: "week" }, { unit: "day" } ],
    canResizeTimelineEvents: true,
    canEditLane: true,
    showEventDescriptions: false,
    labelColumnWidth: 120
    });


    isc.VLayout.create({
    membersMargin: 5,
    width: "99%",
    ID: "printButtonLayout", members: [
    timeline,
    isc.IButton.create({
    autoDraw: false,
    title: "Print Preview",
    click: "isc.Canvas.showPrintPreview(timeline)"
    })
    ]
    });

    #2
    question

    Hello,
    I havn't heard from you and would like to know wether you will work on this problem or if I should look for a workaround.
    Kind regards

    Paul

    Comment


      #3
      This has actually just been addressed this morning and will be in tomorrow's builds.

      Comment

      Working...
      X