scripty2 icon indicating copy to clipboard operation
scripty2 copied to clipboard

Autocompleter zIndex

Open DontShootMe opened this issue 14 years ago • 0 comments

Autocompleter.js The zIndex are not set at the creation time so the list could appears behind other elements :

// Position the menu to appear directly below the input. (function() { var iLayout = this.input.getLayout();
this.menu.element.setStyle({ left: iLayout.get('left') + 'px', top: (iLayout.get('top') + iLayout.get('margin-box-height')) + 'px' , ----------->>> zIndex : 9999 <<<------------ just add this line here to fix it });

DontShootMe avatar Mar 04 '11 23:03 DontShootMe