4 Answers, 1 is accepted
0
Hello Allen,
You need to set the IsDropDownOpen property.
All the best,
Valeri Hristov
the Telerik team
You need to set the IsDropDownOpen property.
All the best,
Valeri Hristov
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items
0
Balaji
Top achievements
Rank 1
answered on 25 Jul 2011, 06:03 PM
I have a radGrid control inside a radCombobox control. When I try to sort the items in the radGrid by clicking on the grid column header, the RadGrid NeedDataSource event gets called and the radCombobox collapses. I want the radCombobox dropdown to stay open so that the user can pick the rows from the radGrid after sorting. Can someone assist me in what needs to be done to keep the
radComboxbox open after sorting the datagrid?
Thanks in advance.
radComboxbox open after sorting the datagrid?
Thanks in advance.
0
Jakub
Top achievements
Rank 1
answered on 13 Feb 2014, 12:42 PM
It is possible do it using method showDropDown, such like this:
var combo = $find("<%= rcbDistricts.ClientID %>");
combo.showDropDown();
var combo = $find("<%= rcbDistricts.ClientID %>");
combo.showDropDown();
0
Anthony
Top achievements
Rank 1
answered on 08 Oct 2014, 04:14 PM
Add this to your RadComboBox:
OnClientKeyPressing="(function(sender, e){ if (!sender.get_dropDownVisible()) sender.showDropDown(); })"
OnClientKeyPressing="(function(sender, e){ if (!sender.get_dropDownVisible()) sender.showDropDown(); })"