I have implemented a jQuery UI Autocomplete box, and rather than being the width of the textbox, the dropdown options are expanding to fill the remaining width of the page.

Have a look at this example to see it for yourself: http://jsbin.com/ojoxa4

I have tried setting the width of the list immediately after creating it, like so:

$('.ui-autocomplete:last').css('width',
                               $('#currentControlID').width()
                              );

This appears to do nothing.

I have also tried setting the width using on-page styles:

ui-autocomplete { width: 500px; }

This DOES work, amazingly, however it would mean that all autocompletes on a page would have to be the same width, which is not ideal.

Is there a way to set the width of each menu individually? Or better, can anyone explain why the widths are not working correctly for me?

link|improve this question

feedback

9 Answers

up vote 8 down vote accepted

It turns out the problem is that the menu is expanding to fill the width of its parent element, which by default is the body. This can be corrected by giving it a containing element of the correct width.

First I added a <div> like so:

<div id="menu-container" style="position:absolute; width: 500px;"></div>

The absolute positioning allows me to place the <div> immediately after the input without interrupting the document flow.

Then, when I invoke the autocomplete, I specify an appendTo argument in the options, causing the menu to be appended to my <div>, and thus inherit its width:

$('#myInput').autocomplete({ source: {...}, appendTo: '#menu-container'});

This fixes the problem. However, I'd still be interested to know why this is necessary, rather than the plug-in working correctly.

link|improve this answer
2  
I'm having exactly the same issue. Looking at the examples on the Jquery UI site and trying to replicate I can't see what I am doing different. Is it me or is the "new" official autocomplete worse than Jorn's old one? – madcapnmckay May 9 '11 at 1:49
feedback

I had a dig around in the autocomplete code and the culprit is this little blighter

_resizeMenu: function() {
    var ul = this.menu.element;
    ul.outerWidth( Math.max(
        ul.width( "" ).outerWidth(),
        this.element.outerWidth()
    ) );
},

I'm not sure what ul.width("") is suppose to be doing but ui.width("").outWidth() always returns the width of the body because that's what the ul is appended to. Hence the width is never set to the elements width....

Anyway. To fix simply add this to your code

$element.data("autocomplete")._resizeMenu = function () {
        var ul = this.menu.element;
        ul.outerWidth(this.element.outerWidth());
}

Is this a bug?

EDIT: In case anyone wants to see a reduced test case for the bug here it is.

link|improve this answer
1  
Its appears it is. bugs.jqueryui.com/ticket/7303 – madcapnmckay May 9 '11 at 2:10
Someone closed it...not sure why. I'm still getting this issue in the latest JQuery UI. – Dan Aug 22 '11 at 19:43
2  
He said that apparently we should be including certain css files. It's not documented and seems a little silly to me since it could work out the width based on the input without the need to external styles. – madcapnmckay Aug 23 '11 at 0:38
1  
Just spent some time digging into this myself and found a couple of things: 1. The ul.width( "") call is to remove any explicit width settings made to the menu element previously. 2. The CSS must be included to work properly because the base CSS sets float: left on .ui-menu elements thus, when calculating the width, ul.width( "" ).outerWidth() takes into account the width of any extra long results, otherwise it takes the width of the input element. – Phuong LeCong Sep 6 '11 at 22:05
feedback

I ran into this issue as well but realized that I just forgot to include a reference to the jquery.ui.autocomplete.css style sheet. Did you include that style sheet in your layout/master page?

link|improve this answer
feedback

I know this has been answered long ago, but I ran into same problem. My solution was to add position:absolute

link|improve this answer
feedback

Set the css in the open event!

$('#id').autocomplete({
    minLength: 3,
    source: function(request, response) {
        $.ajax({
                    url: "myurl",
                    dataType: "json",
                    type: 'POST',
                    data: {
                        'q': request.term,

                        'maxRows': 15
                    },
                    success: function(data) {

                        response($.map(data, function(item) {
                            return {
                                label: item.name,
                            }
                        })),
                    }
                })
            },
            select: function(event, ui) {
                $("#id").val(ui.item.label);
            },
            focus: function ( event, ui ){
                $form.find('#id').val(ui.item.label);
                return false;
            },
            open: function(){
                **$('.ui-autocomplete').css('width', '300px');**
            }
        })
link|improve this answer
feedback

If you are using the official jQuery ui autocomplete (i'm on 1.8.16) and would like to define the width manually, you can do so.

If you're using the minified version (if not then find manually by matching _resizeMenu), find...

_resizeMenu:function(){var a=this.menu.element;a.outerWidth(Math.max(a.width("").outerWidth(),this.element.outerWidth()))}

...and replace it with (add this.options.width|| before Math.max) ...

_resizeMenu:function(){var a=this.menu.element;a.outerWidth(this.options.width||Math.max(a.width("").outerWidth(),this.element.outerWidth()))}

... you can now include a width value into the .autocomplete({width:200}) function and jQuery will honour it. If not, it will default to calculating it.

link|improve this answer
feedback

I know this has long since been answered, but the easiest way I find is to use the id of the autocomplete, and to set the width to 100px you would call

$('.ui-autocomplete-input#MyId').css('width', '100px');

after you finish your $('#MyId').autocomplete(...); call. This way you don't end up tying the order of your autocomplete textboxes in your DOM to your script.

link|improve this answer
feedback

In case you not are able to set the width dynamically and nothing at all works try to include this

http://code.google.com/p/jquery-ui/source/browse/trunk/themes/base/jquery.ui.autocomplete.css?spec=svn3882&r=3882

either in a linked sheet or hardcoded and set the parameters here.

It worked for me after trying everything else

link|improve this answer
feedback

There is a width option for the autocomplete. I use it for 1.3.2.

$('#mytextbox').autocomplete(url, {  
        width: 280,
        selectFirst: false,
        matchSubset: false,
        minChars: 1,
        extraParams:{myextraparam:myextraparam},
        max: 100
    });
link|improve this answer
2  
You must be using some other autocomplete plug-in. jQuery UI has no such option: jqueryui.com/demos/autocomplete/#options – Ender Apr 13 '11 at 16:38
1  
Actually, I am using jquery 1.3.2 with jquery.autocomplete.min.js 1.0.2. If you look in the jquery.autocomplete.min.js for width, you will see this line: if(options.width>0)element.css("width",options.width); This sets the width of the autocomplete. – overherenow Apr 19 '11 at 21:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.