Hi,
I have a checklistbox in a table's cell.
This checklistBox get its values dynamically from the database, by using DataBind().
Currently, all the results are listed in a long list. I would like to define a fixed height (or a max-height), and have a scrollbar in the list to navigate.
I added the following to the css file:
#content-container table.override
{
width:150px;
min-height:50px;
max-height:200px;
overflow:scroll;
border-color:Silver;
border-style:Double;
background-color:Lime;
}
But it doesn't help.
I don't know what else should I try.
I'm working with asp.Net 2.0.
Thanks in advance,
Rache