Search and Top Navigation
#5411 closed enhancement (duplicate)
Opened March 23, 2010 07:59PM UTC
Closed July 19, 2010 05:13PM UTC
Last modified October 11, 2012 09:15PM UTC
Scrolling of Autocomplete menu
Reported by: | theojapa | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | ui.autocomplete | Version: | 1.8 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
It'd be useful to be able to specify the maximum height of the Autocomplete menu. If necessary, the Autocomplete menu would scroll.
This would allow Autocomplete to work well when there's not much space for the Autocomplete menu below the Autocomplete component.
Attachments (2)
Change History (4)
Changed July 08, 2010 09:05AM UTC by comment:1
Changed July 08, 2010 09:11AM UTC by comment:2
Please provide patches against files on Github: http://github.com/jquery/jquery-ui
We can't use patches against minified files from a release.
Changed July 19, 2010 05:13PM UTC by comment:3
resolution: | → duplicate |
---|---|
status: | new → closed |
Duplicate of #5610.
Changed October 11, 2012 09:15PM UTC by comment:4
milestone: | TBD |
---|
Milestone TBD deleted
Hi there,
There seems to be an error in this patch. I got it to work by inserting the following two code bits (delimited by /*patch0*/ and /*patch1*/ respectively) into the original code:
_renderMenu:function(a,c){var d=this;/*patch0*/var j=0;var m=this.options.maxRows;/*patch0*/e.each(c,function(b,f){/*patch1*/if(m&&m<=j){return false;}++j;/*patch1*/d._renderItem(a,f)})},_renderItem:function(a,c){
The mistake was that in stead of incrementing with "++j" the original patch incremented with "++m". Also, I changed "m&&m<j" to "m&&m<=j"
Thanks for a great patch. Would never have gotten it to work without you!
p.s. I guess I should be uploading a .patch file. I hope you'll forgive me for leaving it at this explanation.