Announcement

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

    Calendar printing problem continues with v8.3

    I have seen same problem in previous tickets but the most recent one is one year old.

    The problem is that no events show up on Calendar in print preview mode. I tested it with daily download of v8.3 .

    Code:
    var _today = new Date;
    var _start = _today.getDate() - _today.getDay();
    var _month = _today.getMonth();
    var _year = _today.getFullYear();
    var eventData = [
    {
        eventId: 1, 
        name: "Meeting",
        description: "Meeting",
        startDate: new Date(_year, _month, _start + 2, 4),
        endDate: new Date(_year, _month, _start + 2, 14)
    }
    ];
    
    isc.Calendar.create({ ID: "eventCalendar",  data: eventData, width: 500, height: 400 });
    
    isc.Canvas.showPrintPreview(eventCalendar);
    No error messages appear on browser javascript console or on SmartClient developer console.

    Google Chrome Version 25.0.1364.97 m
    SmartClient Version: v8.3p_2013-03-02/Pro Development Only (built 2013-03-02)

    #2
    As it happens, this was addressed today. Download tomorrow's build for the changes.

    Comment

    Working...
    X