[CLOSED] The Scroll is not down in CalendarPanel

  1. #1

    [CLOSED] The Scroll is not down in CalendarPanel

    Last edited by Daniil; Dec 24, 2013 at 8:32 AM. Reason: [CLOSED]
  2. #2
    Hello!

    It seems we have a problem with our Fx Manager. We will investigate.
  3. #3
    Hi everybody,

    Please try this override:
    Ext.calendar.view.DayBody.override({
        scrollTo: function(y, defer) {
            //defer = defer || (Ext.isIE || Ext.isOpera);
            defer = true;
    
            if (defer) {
                Ext.defer(function() {
                    this.el.scrollTo('top', y, true);
                    this.scrollReady = true;
                }, 10, this);
            }
            else {
                this.el.scrollTo('top', y, true);
                this.scrollReady = true;
            }
        }
    });
  4. #4
    Quote Originally Posted by Daniil View Post
    Hi everybody,

    Please try this override:
    Ext.calendar.view.DayBody.override({
        scrollTo: function(y, defer) {
            //defer = defer || (Ext.isIE || Ext.isOpera);
            defer = true;
    
            if (defer) {
                Ext.defer(function() {
                    this.el.scrollTo('top', y, true);
                    this.scrollReady = true;
                }, 10, this);
            }
            else {
                this.el.scrollTo('top', y, true);
                this.scrollReady = true;
            }
        }
    });
    Hi Daniil, this is not working, after several attempts with the mouse is working, but the start the bug is not removed.
  5. #5
    We are investigating this issue.
  6. #6
    It worked for me. Could you, please, provide a full (but simplified) standalone ASPX page to run and reproduce the problem? Also please describe exact steps to reproduce.

Similar Threads

  1. [CLOSED] CalendarPanel Set by Day
    By osef in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: Jan 15, 2015, 7:46 PM
  2. Replies: 8
    Last Post: Jun 06, 2013, 12:42 PM
  3. Replies: 11
    Last Post: Jun 03, 2013, 12:35 PM
  4. CalendarPanel version 2. the ext
    By ruben in forum 2.x Help
    Replies: 4
    Last Post: Apr 19, 2013, 5:35 AM
  5. Replies: 5
    Last Post: Mar 19, 2013, 3:27 AM

Tags for this Thread

Posting Permissions