Announcement

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

    Calendar event won't show in dayView if setShowDayLanes(true)

    Hi,

    I didnt' changed the following code. I don't know since which version, setShowDayLanes doesn't work anymore.
    The events will NOT load to calendar after fetchData()


    public class ExtendedCalendar extends Calendar implements {

    public ExtendedCalendar(Lane[] lanes) {
    setLanes(lanes);
    setDataSource(DataSource.get("EVENT"));
    setAutoFetchData(true);
    setScrollToWorkday(true);
    setCanEditEvents(false);
    setCanDragEvents(false);
    setShowQuickEventDialog(false);
    setDisableWeekends(false);
    setShowMonthView(false);
    setShowDayLanes(true);
    setNameField("NAME");
    setDescriptionField("DETAILS");
    setStartDateField("START_DATETIME");
    setEndDateField("END_DATETIME");
    setLaneNameField("LANE");
    }
    Attached Files

    #2
    If you're trying to report a possible bug, put together a complete test case and remember to report what product and version you're using.

    Comment

    Working...
    X