Announcement

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

  • Isomorphic
    replied
    Ok, we'll take a look and get back to you.

    Leave a comment:


  • mkmmkandan
    replied
    Yes. There were some really long events and after deleting those events, schedules are showing up.

    Between I upgraded the jar to https://www.smartclient.com/builds/S...GPL/2021-08-11. Still the issue is happening.

    Leave a comment:


  • Isomorphic
    replied
    We're still not certain, but the complaint seems to be that you had some long events and they caused other events to not show up?

    If so, vertical CalendarViews (day and week) don't currently support multi-day events - only Timelines do. But obviously, it should still behave well and events shouldn't disappear, so this could be a bug.

    However - your build is 14 months old, and there have been considerable enhancements and fixes to Calendar framework code since then.

    So, your first step is to test with the latest build of 12.0 from smartclient.com/builds and let us know if you still see the problem.
    Last edited by Isomorphic; 13 Aug 2021, 00:04.

    Leave a comment:


  • mkmmkandan
    replied
    I created this sample schedules in GWT Show case to indicate how its supposed to work.

    I created 4 schedules with start time as 7 AM and end time as 8 PM. I am able to visualize all the events in daily and weekly view.

    But in my previous attachment in my application calendar view, event though events share the same start and end time, all the events are not visible as expected.


    Calendar widget configuration.

    Code:
     public CalendarWidget(String width, String height) {
            calendar.setDisableWeekends(false);
            calendar.setShowAddEventButton(false);
            calendar.setCanEditEvents(true);
            calendar.setEventAutoArrange(true);
            calendar.setEventOverlap(true);
            calendar.setEventOverlapPercent(5);
            calendar.setEventOverlapIdenticalStartTimes(true);
            calendar.setSize(width, height);
            calendar.setShowQuickEventDialog(false);
            calendar.setShowOtherDays(false);
    
            importButton.addStyleName("smallButton");
            importButton.setSize("50px", "21px");
        }

    Attached Files

    Leave a comment:


  • Isomorphic
    replied
    It's not clear what problem you're having, from your description.

    Please post some runnable test-code that shows the problem, including your Calendar settings and demonstration data-records.

    Leave a comment:


  • mkmmkandan
    replied
    Waiting for the response

    Leave a comment:


  • Multiple Calendar events are getting superimposed

    SmartGWT version - https://www.smartclient.com/builds/S...GPL/2020-06-25
    Browser - Google Chrome Version 92.0.4515.107

    Created calendar event schedules for each day with start time as 7 AM and end time as 8 PM. There are around 8 events created with same data.
    But only event is visible in daily and weekly view of calendar. Remaining events got hidden.

    After investigation looks like there were some long events whose start time is SEP 2020 and end time is SEP 2021 resulting in hiding the current events.
    After deleting these obsolete events 7 AM schedules are visible.

    Could you please let us know what could be the issue?
    Attached Files
Working...
X