Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Actually i am taking radcomboboxe in my project in that radcomboboxe i taken one checkbox and one linkbutton in itemtemplate. And i am binding users name for that linkbutton. if i run the project means it is coming properly only. now what i want is if i check any check box means i want to show that user name in above combo box. is it possible
Posted
Comments
ZurdoDev 30-May-13 8:46am    
Anything is possible; however, right now, it is impossible for me to understand what you are asking. Can you be more clear?
ntitish 30-May-13 23:37pm    
Sir actually i am binding user names to link button which is in item template of rad combobox. my functionality is selecting multiple users at a time.so i added one checkbox in the same item template. Now i am selecting the users by checking the check box and sending message to that particular users.up to this it is working perfectly...but my problem is i want to display the names of selected users in combobox by separating coma...
ZurdoDev 31-May-13 7:31am    
It sounds like all you have to do is concatenate strings together. Where are you stuck?
ntitish 1-Jun-13 0:47am    
after checking the checkbox the combobox will close na sir at that time i awant to display the selected checkbox users in the combobox below is my code for binding i want to call the javascript for this on radcombobox event(OnClientDropDownClosed).

<telerik:RadComboBox ID="rdPhysicianscmb" runat="server" Width="75%"
DataSourceID="sdsAttachedUsers" Filter="Contains" Font-Size="14pt"
onitemdatabound="rdPhysicianscmb_ItemDataBound" önClientDropDownClosed="HandleClose" LoadingMessage="Loading..." EmptyMessage="All Providers">
<itemtemplate>

<asp:CheckBox ID="chk" Width="10px" runat="server"/>

<asp:LinkButton ID="lblphyname" runat="server" CommandName="Selected" ForeColor="#0489B5" Font-Size="11pt"
CommandArgument='<%# Eval("AssignedTo") %>' onclick="lblphyname_Click" Text='<%# Eval("FullName") %>' Font-Underline="false" Font-Overline="false">




//the check box and linkbutton is in itemtemplate i pasted but it is not displaying
ZurdoDev 3-Jun-13 8:26am    
Sorry, this does not make sense.

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