I'm taking a look at the jQuery autocomplete plugin and it works great
for the most part except that it's generating scrollbars on both sides
of the drop down list.

Unfortunately this can't be overridden (AFAIK) via the stylesheet
provided because the code apparently hard codes the overflow: auto
style in the plug-in's code.

It's this code in the show function:

            if(options.scroll) {
                list.scrollTop(0);
                list.css({
                                        maxHeight: options.scrollHeight,
                                        overflow: 'auto'
                                });

This effectively overrides any settings in the style sheet.

I've removed the overflow from the above code and then used the style
sheet instead, but is this something that could be done to the base
code in a future update. The explicit hard coding seems entirely
unnecessary since the styling can take care of this.

+++ Rick ---

Reply via email to