[FIXED] [2.2] Move event in weekview calendar

  1. #1

    [FIXED] [2.2] Move event in weekview calendar

    Hi all, i dont know if it is a bug or not,

    In calendar view https://examples2.ext.net/#/Calendar/Overview/Basic/

    I cant move the event in weekview, only in monthly view.. is correct or is a real bug?

    Regards,
    Last edited by Daniil; Apr 03, 2013 at 9:04 AM. Reason: [FIXED] [2.2]
  2. #2
    Hi @rammus,

    I just tested in Chrome. It seems the events are moved well in the Week view.

    Any more details?
  3. #3
    hi danil, sorry for delay

    So first you create a new event in week or dayview

    now try to move this event?? Its not working.. but when you create in monthly view you can drag or resize.

    Its a bug on sync??

    regards,
  4. #4
    Reproduced.

    It has been fixed in SVN and will be included to the upcoming v2.2 release.

    Fix
    Ext.calendar.view.AbstractCalendar.override({
        getEventIdFromEl: function (el) {
            el = Ext.get(el);
    
            var parts,
                id = '',
                cls,
                classes = el.dom.className.split(' ');
    
            Ext.each(classes, function (cls) {
                parts = cls.split(this.eventElIdDelimiter);
                if (parts.length > 1) {
                    id = parts[1];
                    return false;
                }
            }, this);
    
            return id;
        }
    });
    Thank you for the report.

Similar Threads

  1. [CLOSED] How to set StartHour in WeekView Calendar
    By UnifyEducation in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Jul 23, 2012, 2:27 PM
  2. Disable move events in Calendar
    By threewonders in forum 1.x Help
    Replies: 2
    Last Post: Dec 23, 2011, 11:52 AM
  3. Replies: 0
    Last Post: May 03, 2011, 1:19 PM
  4. ext:Calendar WeekView
    By reiben in forum 1.x Help
    Replies: 2
    Last Post: Apr 04, 2011, 10:25 AM
  5. [CLOSED] How to detect SpliterBar Move event from Resize event
    By randy85253 in forum 1.x Legacy Premium Help
    Replies: 9
    Last Post: Dec 27, 2010, 5:08 PM

Tags for this Thread

Posting Permissions