gouri
gouri

Reputation: 11

I want to display only one item at a time in checkboxlist n provide scroll bar when we click on checkboxlist for multiselection

i want a checklistbox as a dropdownlist with checkbox inside. means it must provide scroll bars in checkboxlist n show 1 item at first.

Upvotes: 0

Views: 342

Answers (1)

jim31415
jim31415

Reputation: 8818

Wrap your CheckBoxList in a <div>.

CSS:

#wrapper{ border:solid 1px #aaa; height:20px; width:300px; overflow:auto;}

HTML:

<div id="wrapper">
   <asp:CheckBoxList ID="chkBoxes" runat="server" ></asp:CheckBoxList>
</div>

Then use javascript to change the styling (CSS) of the <div> on the onclick event.

Here's an implementation example: http://www.codeproject.com/KB/webforms/MultiSelect.aspx

Upvotes: 1

Related Questions