Announcement

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

    Calendar bug in 3.1d Nightly 10/18/2012

    If showDayView and showWeekView are false (viewMode tabBar goes away as desired), but the last row in Calendar gets shrunk - it seems by the size that the tabBar use to take up.

    Code:
    cal = new Calendar();
    		cal.setShowDayView(false);
    		cal.setShowWeekView(false);
    		cal.setShowControlsBar(false);
    		cal.setFirstDayOfWeek(1);
    		cal.setNameField("EVENT_NAME");
    		cal.setStartDateField("EVENT_START");
    		cal.setEndDateField("EVENT_END");
    		cal.setDescriptionField("EVENT_DESCRIPTION");
    		cal.setDisableWeekends(false);
    		cal.setSize("100%", "100%");
    		cal.setDataSource(eventSummaryViewDS);
    		cal.setInitialCriteria(calCriteria);
    		cal.setAutoFetchData(true);

    #2
    Using dev console, I can clearly see the mothView_body extending down below the parent layout and being clipped.

    Comment


      #3
      We're not seeing this and there was a temporary regression in the 10/18 build around ListGrid overflow (Calendar month-view is implemented as a subclass of ListGrid).

      Could you re-test with the latest nightly build (Oct 19) and let us know if you're still having this problem

      Comment

      Working...
      X