Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Hi I too have a problem with scrollbars and auto suggest in a cfwindow.. But my problem lies with the scrollbars within the autosuggest list..I'd be grateful for any pointers..
My auto suggest list returns a long list and i'd like the user to be able to scroll the list. The mouse roller scrolls perfectly,but if I want to scroll using the vertical scroll bar (as many of our users dont have scroll mice) it just disappears.
I have tried to override the CSS by including the following attribute below but it doesnt work.I have tried various CSS tricks (like wrapping in another DIV and changing position values) to no avail.Please help!
Here is my entire CSS related to the autosuggest:
input.autosuggestinput
{
z-index:0;
font-weight: normal;
font-family:verdana;
font-size:10px;
width: 170px;
}
.autosuggest, .autosuggest div
{
font-weight:bold;
font-family:verdana;
}
div.autosuggestcontainer li.yui-ac-highlight
{
background-color:white;
}
div.autosuggestcontainer li
{
padding:2px;
width:100%;
cursor:pointer;
white-space:nowrap;
margin:0;
border-bottom-style:solid;
border-bottom-width:1px;
border-bottom-color:#e2e2e2;
}
div.autosuggestcontainer li.yui-ac-prehighlight
{
background:#ffd2a6;
}
div.autosuggest
{
overflow:scroll;
position:relative;
float:left;
height: 300px;
}
.autosuggestcontainer {
height:400px;
overflow:auto;
position:relative;
float:left;
}