• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Scrolling long cfinput autoSuggest lists

New Here ,
Apr 28, 2008 Apr 28, 2008

Copy link to clipboard

Copied

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!
TOPICS
Advanced techniques

Views

864

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Aug 17, 2010 Aug 17, 2010

Copy link to clipboard

Copied

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

div.autosuggest

{

     overflow:auto;

    position:relative;

    float:left;

    height:200px;

}

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Aug 19, 2010 Aug 19, 2010

Copy link to clipboard

Copied

LATEST

Try adding the following in your code:

<style>

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

</style>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation