EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: Aod47 on August 24, 2019, 07:27:44 PM



Title: Fix width of Searchbox menu
Post by: Aod47 on August 24, 2019, 07:27:44 PM


When select menu item, a width of each menu item changed by width of text option.

I prefer the same width of each menu item.

Could you please advice how to set fix width?

Thank you very much.


Title: Re: Fix width of Searchbox menu
Post by: stworthy on August 25, 2019, 07:02:13 PM
Please try this code:
Code:
$('#sb').searchbox({
onResize: function(){
var mb = $(this).searchbox('button');
mb.outerWidth(120);
}
})


Title: Re: Fix width of Searchbox menu
Post by: Aod47 on September 07, 2019, 03:20:31 AM
Thank you, It's work great.