Loading ...

How to add scroll bars to ASP.NET checkbox list

Who is online?  0 guests and 0 members
home  »  forums   »  asp.net topics   »  web forms / data controls   » How to add scroll bars to ASP.NET checkbox list

How to add scroll bars to ASP.NET checkbox list

Posts under the topic: How to add scroll bars to ASP.NET checkbox list

Posted: 10/10/2011

Lurker 235  points  Lurker
  • Joined on: 10/16/2009
  • Posts: 47

Hi,

I have a checkboxlist control. The issue is that its height kept on increasing with the records. I need to put scroll for it. Here is my checkboxlist:

 <asp:CheckBoxList ID="CheckBoxList1" runat="server">
                </asp:CheckBoxList>


Posted: 10/11/2011

Lurker 270  points  Lurker
  • Joined on: 1/3/2009
  • Posts: 14

kevin kevin said:

Hi,

I have a checkboxlist control. The issue is that its height kept on increasing with the records. I need to put scroll for it. Here is my checkboxlist:

 <asp:CheckBoxList ID="CheckBoxList1" runat="server">
                </asp:CheckBoxList>

 

Put this checkbox list in a div control and set height width property of div like following:

<div style="width:250px; height:120px; overflow:auto;">
  <asp:CheckBoxList CheckBoxes="true" ID="CheckBoxList1"  runat="server"  />
</div>



Page 1 of 1 (2 items)