An ASP.Net UI component provided by the vendor Telerik. It provides extensions to dropdown list type functionality.
Questions tagged [radcombobox]
252 questions
0
votes
2 answers
How to get last selected value from RadComboBox
Is there anyway to get the last selected value from RadCombobox in c#. Please advise
I did something like this
protected void cboTest_SelectedIndexChanged(object o, Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs e)
{
Session["CurrentItem"]…

Spidey
- 1,583
- 5
- 23
- 30
0
votes
4 answers
Hide a RadComboBox drop down
I have a button in a footer section of drop down list.I want when i click on button the only drop down list to be hide along with the button.
I want to hide the only ItemTemplate content
This is sample code

Somnath Kharat
- 3,570
- 2
- 27
- 51
0
votes
1 answer
Telerik RadComboBox Items not getting checked
I have a search page where i select some parameters and hit submit I store sessions and get results in radgrid.And on the double click of the row i go to the edit page..
I am capturing radcombobox.text into a session..example…

user1046415
- 779
- 4
- 23
- 43
0
votes
1 answer
How to find RadComboBox in a GridTemplateColumn from a different GridTemplateColumn Radcombobox OnSelectedIndexChanged event
I have two GridTemplateColumn(s) which each contain a RadCombobox. When the left combobox OnSelectedIndexChanged event fires, I need to repopulate the right combobox according to the new value in the left. I cant seem to FindControl in any way from…

user2116589
- 1
- 1
0
votes
3 answers
telerik radcombobox : C# lambda expression to get list of values of checked items
At the moment I have to break down this simple operation in two parts, I am sure the would be a better way is hiding from me :
List selectedValues= new List();
...
IEnumerable checkedItems = from checkedItem in…

ablaze
- 722
- 7
- 30
0
votes
0 answers
SqlDataSource not being populated with parameter
I am executing an SSRS rpt and need to duplicate this in a web project with sqldatasource id's.
The ssrs rpt parameters work perfectly as far as being populated, but when I try to get the same thing done in the web version, the second parameter list…

sagesky36
- 4,542
- 19
- 82
- 130
0
votes
2 answers
Disable all Radcomboboxes inside a div
I have several telerik radcomboboxes inside a div with various id's. I want to find all of them and disable them without using those id's like say finding the tag name using javascript.
Please help

RedBrain
- 25
- 1
- 6
0
votes
2 answers
Get all radcombobox client id dynamically
In Telerik Control, how to get a radcombobox id?
For example, the below code gets the value of RadCombox1 Client ID. If there is 5 radcomboboxes in my page (sample.aspx), how to get the corresponding id DYNAMICALLY.........
{
var combo =…

Ganesan A
- 1
- 2
0
votes
0 answers
how to search full string in rad combobox bound items like IntelliSense
**> how to search full string in rad combobox bound items like
IntelliSense**
note that its cantain more than 3000 items , i have to make search specification like IntelliSense ..

Subhas Malik
- 49
- 4
0
votes
0 answers
RadComboBox error selecting value (RadComboItem)
It has a RadComboBox in WPF WEB, which is filled at runtime through a database call. This data set is assigned to combo through instructions similar to the following:
dim myNewItem as RadComboBoxItem
myRadCombo.items.clear
For each CurrentRow as…

xavendano
- 133
- 5
- 14
0
votes
0 answers
How to bind multicolumn radcombo box values to Text boxes client side?
i am using multicolumn rad combo box, in that i have 5 columns like code,name,description, date,remarks. I have to bind these 3 columns values to 3 text boxes when combo box selection changed except value field and text field of combobox. Any body…

Sreedhar goud
- 81
- 2
- 5
- 15
0
votes
1 answer
Using RadToolTip with RadComboBox without using ItemTempalte
Is there a way to connect a RadToolTip to each item within a RadComboBox (having a different tool tip come up for each item in the combo box) without having to use the ItemTemplate of the RadComboBox? The reason is because I like the built-in…

Brian David Berman
- 7,514
- 26
- 77
- 144
0
votes
1 answer
Using cascading comboboxes
I'm using a Telerik radGrid to display data, including address. I want to be able to insert new, or Edit an existing address. To this end, I wish to use Cascading comboboxes which would prepopulate the next, ie country_onselectedindexchanged…

Tim Cadieux
- 447
- 9
- 21
0
votes
2 answers
How to list items with an empty for RadComboBox
I have one RadComboBox.
I fill it with a function which returns for example {Stack, Over, Flow, StackOverFlow}
When I click RadCombobox that items are listed.
And I want to give first place for empty element.
And I tried to do below:
var stack=…

Stack User
- 1,378
- 5
- 19
- 40
0
votes
1 answer
onchange works for ASP.net DropDownList but not for RadCombobox
In ASP.net Control is used DropDownList Onchange as followes:
In ASCX:
onchange="dorefreshf();dorefreshs();"
When I replaced the DropDownList with a RadComboBox the JS doesn't work?
Any suggestions?

Alaa Alweish
- 8,904
- 16
- 57
- 84