An ASP.Net UI component provided by the vendor Telerik. It provides extensions to dropdown list type functionality.
Questions tagged [radcombobox]
252 questions
12
votes
6 answers
Bind large number of data to a combobox?
I want to bind list of employees in drop down list , with autocomplete feature so the user can search the proper name .i use RadComboBox
I have two main problems :
1- The list is so large about 5000 item.so binding this large number of data in the…

Anyname Donotcare
- 11,113
- 66
- 219
- 392
7
votes
7 answers
Adding empty string to RadComboBox
I have a webpage that has a Telerik RadComboBox on the page. One of the properties of this ComboBox is EmptyMessage, which fills the combobox with a message when an item is not selected. I am binding my combobox to a datasource at runtime and for…

Icemanind
- 47,519
- 50
- 171
- 296
7
votes
3 answers
How to set RadComboBox with a data source to AutomaticLoadOnDemand programmatically
I am using a RadComboBox. In my code I set the selected value to the RadComboBox like so:
public void RCB_PO_NUM_DataBound(object sender, EventArgs e)
{
var itemRCB_PO_NUM = RCB_PO_NUM.FindItemByText(stringPO_NUM);
…

nate
- 1,418
- 5
- 34
- 73
7
votes
3 answers
Set "Selected Item" in multiselect RadComboBox
Is there any way we can set Selected Items or Checked Items in a multiselect RadComboBox ?. I want to set value on postback from server.
I tried following code but that works only if it is not a multiselect RadComboBox.
Radbox1.SelectedValue =…

Rahul
- 135
- 2
- 6
- 14
6
votes
1 answer
WPF UserControl.Resources reference
I am try to start learning WPF and i am using Telerik.
So i start with simple ComboBox in this article and this is my control:

fgerh drgse
- 61
- 1
- 1
- 3
6
votes
2 answers
RadComboBox dropdown below ONLY
Is there a way to force the dropdown of a RadComboBox to ONLY appear below and never above regardless of what the control feels would be the most visible?

Brian David Berman
- 7,514
- 26
- 77
- 144
5
votes
1 answer
Forcing RadComboBox drop down direction
Users are desiring that the drop down window of a RadComboBox go up instead of down, regardless of where on the screen they are. Not sure why, but how would you implement this?
Note: I have a RadComboBox with a custom template, not the default…

Brian Mains
- 50,520
- 35
- 148
- 257
5
votes
1 answer
How to set radcombobox selected value from database?
I have noticed a big difference between the stock Dropdownlist and RadComboBox. With the asp:dropdownlist it is easy to set the selected value from a database record. But when I try to do that with RadComboBox, it doesn't work. Even when I try…

Chris
- 2,953
- 10
- 48
- 118
5
votes
3 answers
Radcombobox clears the text when it is not in the items list
I have a telerik's radcombobox like below:

teenup
- 7,459
- 13
- 63
- 122
4
votes
1 answer
how to bind the radcombobox at runtime in asp.net
I have a webpage that has a Telerik RadComboBox in radgrid control on the page,and i have a SqlserverCe database.My issue is how can i write the code to bind the RadCombobox at page load event in asp.net please help me.....

Victor Athoti.
- 829
- 9
- 22
- 49
4
votes
1 answer
Silverlight RadComboBox keeping open after selection
Silverlight MVVM. I have a RadCombobox, and for each selection I'm adding a new row in another datagrid. I add necessaries codes in my ViewModel class and this part is working. What I’d like to perform is:
Keep the comboBox open while the control…

Frenchi In LA
- 3,139
- 3
- 25
- 41
3
votes
2 answers
focus is wrong when trying to click inside a RadComboBox
So i have a RadCombobBox which is heavilly edited to have a list of options where 1 of the options can be an input field. There are different types of input fields you can chose from but i'm having a problem with the integer input field. There's…

Vincent
- 1,497
- 1
- 21
- 44
3
votes
1 answer
RadCombobox Value on Select vs Expand
I have combobox with values 0, 1, 2. When user expand the combobox to select the value, I want to show Text of the value as 0 - Bad, 1 - Average, 2 - Good.
But when user select the value, I want to display the value only.
How can I do this ? Here…

Chatra
- 2,989
- 7
- 40
- 73
3
votes
2 answers
Error in Dropdown "SelectedIndexChanged" event, while Seleting new item from RadComboBox
In my webpage, there is a RadComboBox outside the RadGrid and a Dropdown inside RadGrid.
Data inside Dropdown is bind based on RadComboBox item selection.
Ex: If from RadComboBox, item "Company" is selected, then data inside Dropdown will be related…

timz_123
- 435
- 1
- 9
- 47
3
votes
2 answers
How to set the SelectedValue attribute of Telerik RadComboBox inside the FormTemplate of a RadGrid
I have what I think should be a straightforward question. I have a RadGrid with FormTemplate editing and AJAX enabled. One of the fields in the FormTemplate is a RadComboBox filled with U.S. State selections. I can bind the RadComboBox to the…

Kyle Noland
- 4,788
- 6
- 30
- 33