I have a 2010 C# asp.net webform application that I just placed a checkboxlist control on the form. The problem is the selections that are user can make are extremely large. Thus i am wondering if there is away to make the checkbox list control have a scroll bar?
Can I embedded the checkboxlist control in some type of a web control? If so what would it be?
Should I just use a regular checkbox control and put a group control are the checkboxes? Would this help anything?
Loading
Javeed M ShaikhPosted Oct 21, 2011, 10:38 AM
did you try surrounding it with a div tag:
Please do not forget to mark "Accepted Answer".
dcPosted Oct 21, 2011, 5:22 PM
asp.net has a panel control where you can set the scrollable property. What is a better method to use, using a
or the panel that has a scrollable property? I want to the srollbar to show up right next to the checkboxlist that is loaded dynamically from a database. Thus can you tell me how to have the scroll bar right next to the checkbox control? I do not see an automatic way to size the scrollbar. Do you have any idea?