[FIXED] [#154] [2.x] BoxReorderer on TabPanel makes browser window minimizes itself or loose focus

Page 2 of 2 FirstFirst 12
  1. #11
    Try this
    Ext.dd.DragDrop.override({
    handleMouseDown: function(e, oDD){
            var me = this,
                activeEl;
    
    
            if ((me.primaryButtonOnly && e.button != 0) || me.isLocked()) {
                return;
            }
    
    
            me.DDMInstance.refreshCache(me.groups);
    
    
            if (me.hasOuterHandles || me.DDMInstance.isOverTarget(e.getPoint(), me))  {
                if (me.clickValidator(e)) {
                    activeEl = Ext.Element.getActiveElement();
    
    
                    // set the initial element position
                    me.setStartPosition();
                    me.b4MouseDown(e);
                    me.onMouseDown(e);
    
    
                    me.DDMInstance.handleMouseDown(e, me);
    
    
                    if (activeEl && activeEl != document.body) {
                        Ext.fly(activeEl).blur();
                    }
    
    
                    me.DDMInstance.stopEvent(e);
                }
            }
        },
    });
  2. #12
    Hmm, the thread became opened again.
    http://www.sencha.com/forum/showthread.php?256909

    Maybe, the fix broke something else and they reverted the changes back and reopened the bug. Or they just marked it fixed by a mistake.

    Anyway, I created an Issue to monitor.
    https://github.com/extnet/Ext.NET/issues/154
  3. #13
    The Sencha thread reads as 'fixed' for some time, so I believe it is safe to close this issue!
    Fabrício Murta
    Developer & Support Expert
Page 2 of 2 FirstFirst 12

Similar Threads

  1. [CLOSED] BoxReorderer prevents field focus
    By RCN in forum 3.x Legacy Premium Help
    Replies: 1
    Last Post: Feb 17, 2015, 1:22 PM
  2. [CLOSED] Problem: Closing Maximized Window will loose parent window scrollbar
    By tlfdesarrollo in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Apr 19, 2012, 8:51 PM
  3. [CLOSED] Binding Large Set of Data to a Grid makes browser unresponsive
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 7
    Last Post: Apr 14, 2011, 4:01 PM
  4. [1.0] Fixed column makes the grid grow
    By nextSTEP in forum Bugs
    Replies: 3
    Last Post: Nov 25, 2010, 7:06 AM
  5. Replies: 7
    Last Post: Nov 13, 2008, 10:19 PM

Posting Permissions