I am looking to create a multi-column list that is scrollable, kind of like
a ListBox control, only I need a way to align the columns of text that I
will have (I would use spaces, but because the ListBox normally uses a
variable-width font, that would not work). Is there a control like the
DataList (a control that uses templates and databinding) that displays the
items in a scrollable manner? One idea that I had, although it sounds rather
inefficient to me if it works, would be to place a DataList inside a Panel,
and then let the user do the scrolling using the Panel's scrollbar. Anyone
have any suggestions? Thanks.

Signature
Nathan Sokalski
njsokalski@hotmail.com
http://www.nathansokalski.com/
Aidy - 16 Aug 2007 12:03 GMT
Yes, I'd have the column headings static, then a scrollable div (rendered by
using an asp:Panel) with the content underneath.
>I am looking to create a multi-column list that is scrollable, kind of like
>a ListBox control, only I need a way to align the columns of text that I
[quoted text clipped - 5 lines]
>Panel, and then let the user do the scrolling using the Panel's scrollbar.
>Anyone have any suggestions? Thanks.
Ross Culver - 16 Aug 2007 14:22 GMT
Sounds like a gridview to me.
Ross
>I am looking to create a multi-column list that is scrollable, kind of like
>a ListBox control, only I need a way to align the columns of text that I
[quoted text clipped - 5 lines]
>Panel, and then let the user do the scrolling using the Panel's scrollbar.
>Anyone have any suggestions? Thanks.
Ladislav Mrnka - 17 Aug 2007 02:18 GMT
Hi Nathan,
I assume you have to use panel (as you already tryed) or div with style
overflow:scroll.
Regards,
Ladislav
> I am looking to create a multi-column list that is scrollable, kind of like
> a ListBox control, only I need a way to align the columns of text that I
[quoted text clipped - 5 lines]
> and then let the user do the scrolling using the Panel's scrollbar. Anyone
> have any suggestions? Thanks.