Click here to Skip to main content
15,890,123 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
hi i was strucked small problem there anyone could you please help this !

filtered multiple Checkbox list in Dropdown list using Asp.net
Posted
Comments
Laiju k 28-Oct-14 8:25am    
what are you trying to do,it is not clear
Member 10305232 28-Oct-14 9:49am    
thanks for giving response !
Actually i want to do selects the group list[it was displayed like --select group list-- in dropdown and total groups are displayed in when we tapped on dropdown,here either filter the groups list Or using checkboxes to selecting the groupslist] and save that selected checkbox groups.

*** using 3-tier architecture
ZurdoDev 29-Oct-14 12:48pm    
This is not clear at all.
ATjong 30-Oct-14 1:58am    
Agree with RyanDev. Try to structure your question.
Which controls do you have? (how many and types)
What is the trigger for your action? (user clicks,binding etc)
What has to happen then?
What happens now?
Member 10305232 30-Oct-14 2:48am    
Ok Guys! i was getting my answer but here only one small issue is there what it is filter concept was not working in ajax dropdown could you please help this !!
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">

<div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<contenttemplate>
<asp:TextBox ID="txtCustomer" Text="Select Customers" runat="server" CssClass="txtbox"
Height="20px" Width="322px">
<asp:Panel ID="PnlCust" runat="server" CssClass="PnlDesign">
<asp:CheckBoxList ID="cblCustomerList" runat="server">
<asp:ListItem>Customer One
<asp:ListItem>Customer Two
<asp:ListItem>Customer Three
<asp:ListItem>Customer Four
<asp:ListItem>Customer Five
<asp:ListItem>Customer Six
<asp:ListItem>Customer Seven


<asp:Button ID="Button1" runat="server" Text="Submit" onclick="Button1_Click" />
<br />
<cc1:PopupControlExtender ID="PceSelectCustomer" runat="server" TargetControlID="txtCustomer"
PopupControlID="PnlCust" Position="Bottom">

<asp:Label ID="Label1" runat="server" Text="">


</div>
</form>
</body>

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900