Skip to main content
Participant
April 28, 2008
Question

Scrolling long cfinput autoSuggest lists

  • April 28, 2008
  • 2 replies
  • 934 views
Has anyone figured out how to scroll a long autoSuggest list used with a cfinput tag? I tried wrapping my own div tag around the cfinput tag (style="position:absolute;height:445; z-index:1002; overflow: auto;) and the vertical scroll bar appeared on the autoSuggest list. However, when I clicked on the scroll bar, the autoSuggest list blinked and disappeared.

Thanks!
This topic has been closed for replies.

2 replies

Participating Frequently
August 19, 2010

Try adding the following in your code:

<style>

.autosuggestcontainer {
    height:400px;
    overflow:auto;
    position:relative;
    float:left; 
}

</style>

sajjansarkaratlanta
Participating Frequently
August 17, 2010

same problem.. please help..I overrode the CSS and created my own:

div.autosuggest

{

     overflow:auto;

    position:relative;

    float:left;

    height:200px;

}