Posted: 10/10/2011
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
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>