Datalist w/ scroll

N

nathan001

I thought I had this with the following but It did not work. Is there
any way to cause the datalist to scroll or is that an impossibility.
Or does one of the other controls have capacity?

<asp:panel id="Panel2" runat="server">
<DIV id="Layer1" style="OVERFLOW: auto">
<asp:DataList id="dlImages" Width="80px" runat="server"
RepeatColumns="3" DataKeyField="tid">
<ItemTemplate>
<asp:ImageButton id=ImageButton1 runat="server" ImageUrl='<%#
DataBinder.Eval(Container.DataItem, "iPath")%>' CommandName="select">
</asp:ImageButton>
</ItemTemplate>
</asp:DataList>
<asp:label id="details" Width="88px" runat="server" Font-Size="10px"
Font-Names="Tahoma" Visible="False"></asp:label>
</DIV>
</asp:panel>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top