• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

Google Chrome 43 Has Broken Navigation Button

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Google Chrome 43 Has Broken Navigation Button

    Since the update of Chrome to 43 the navigation button does not allow selection of options from a 2nd level - top level is ok but mouse hover over a menu item that then displays sub menus or options and you cannot select anything.

  • #2
    Open up resources/valence-extjs4.js and add this fix to the very bottom of the file after the last curly bracket. Clear your cache, refresh, and problem should go away.

    Code:
    // fix hide submenu (in chrome 43)
    Ext.override(Ext.menu.Menu, {
        onMouseLeave: function(e) {
        var me = this;
    
    
        // BEGIN FIX
        visibleSubmenu = false;
        me.items.each(function(item) { 
            if(item.menu && item.menu.isVisible()) { 
                visibleSubmenu = true;
            }
        })
        if(visibleSubmenu) {
            //console.log('apply fix hide submenu');
            return;
        }
        // END FIX
    
    
        me.deactivateActiveItem();
    
    
        if (me.disabled) {
            return;
        }
    
    
        me.fireEvent('mouseleave', me, e);
        }
    });

    Comment


    • #3
      Thanks Richard, we identified a fix from the Sencha site but I wanted your feedback and to also highlight the issue to other Valence users - will give this a try tomorrow.

      Comment

      Working...
      X