This is a migrated thread and some comments may be shown as answers.

RadCombo not Expanding

3 Answers 74 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Alex Odago
Top achievements
Rank 1
Alex Odago asked on 13 May 2010, 11:46 AM

 

Hi ...could someone kindly help me. Below is my code.
I have a radCombo that does not expand when I click on the DownArrow button for expansion. I connect the radCombo to a datatable called dtAreas and it displays the first data item but I cannot expand it to view and select any other item. Also since MarkFirstmatch is true, if I start typing in it displays the item but I want to be able to use the drop down feature and I cannot. Your help is appreciated highly.
Could I be missing a setting or does anyone have an idea what I am doing wrong ?

string
AreasQuery = "select AreaID,AreaName from area order by AreaName ";

dtAreas = dbo.sqldb_select(AreasQuery, 1);

cmbAreas.DataTextField =

"AreaName";

 

 

cmbAreas.DataValueField =

"AreaID";

 

 

 cmbAreas.DataSource = dtAreas;

cmbAreas.DataBind();

Alex

 

 

 

 

 

 

3 Answers, 1 is accepted

Sort by
0
Alex Odago
Top achievements
Rank 1
answered on 13 May 2010, 11:48 AM
See above query
0
Yana
Telerik team
answered on 14 May 2010, 09:31 AM
Hi Alex,

Please send us the definition of the combobox as we're not able to replicate the issue.

All the best,
Yana
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
Alex Odago
Top achievements
Rank 1
answered on 14 May 2010, 09:53 AM
Hi...thanks for your reply. The problem is sorted. The problem was with my HTML structure which was previously:

 

<form id="form1" runat="server">

 

 

<asp:ScriptManager ID="ScriptManager1" runat="server" />

 

<

 

html xmlns="http://www.w3.org/1999/xhtml">

 

<

 

head runat="server">

 

<

 

link href="home2.css" rel="stylesheet" type="text/css">

 

 

<title>Find Specials and Sales in your Area</title>

 

</

 

head>

 

<

 

body>

 

<

 

div class="heading">

 


And I replaced it with the below structure and it works perfectly now.

 

</

 

head>

 

<

 

body>

 

 

<form id="form1" runat="server">

 

<

 

asp:ScriptManager ID="ScriptManager1" runat="server" />

 

 

<

 

div class="heading">

 

Tags
ComboBox
Asked by
Alex Odago
Top achievements
Rank 1
Answers by
Alex Odago
Top achievements
Rank 1
Yana
Telerik team
Share this question
or