From 759e47a6573595dd75b426126448132b50a86aa9 Mon Sep 17 00:00:00 2001 From: Felix Nagel Date: Sun, 22 Jan 2012 15:20:35 +0100 Subject: [PATCH] Selectmenu: fixed positioning with overflow in IE --- ui/jquery.ui.selectmenu.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index af34b4e19b..94bdd19a38 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -204,7 +204,14 @@ $.widget( "ui.selectmenu", { this.menu.menu( "focus", event, currentItem ); }, 1); - if ( !this.options.dropdown ) { + if ( !this.options.dropdown ) { + // center current item + if ( this.menu.outerHeight() < this.menu.prop( "scrollHeight" ) ) { + this.menuWrap.css( "left" , -10000 ); + this.menu.scrollTop( this.menu.scrollTop() + currentItem.position().top - this.menu.outerHeight()/2 + currentItem.outerHeight()/2 ); + this.menuWrap.css( "left" , "auto" ); + } + $.extend( this.options.position, { my: "left top", at: "left top",