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

AutoComplete Results Are Invisible

5 Answers 73 Views
AutoCompleteBox
This is a migrated thread and some comments may be shown as answers.
Shaw
Top achievements
Rank 1
Shaw asked on 11 May 2013, 07:36 PM
I have been using the AutoComplete box in a project for a few weeks and it is great.

It seems to have stopped working however. The results still appear below the box but the list does not show text.

You can see in my screenshot that a thin line appears below the box that is tall enough to be showing all of the results. I'm not sure what is going wrong. I think it might have happened when we upgraded from 4.0 to 4.5.

I am using ASP.NET 4.5 with the latest Telerik release on Windows 7. I have tried this in the latest Chrome and IE10.

Thanks for any suggestions!

I should add code:

<telerik:RadAutoCompleteBox ID="natCompleteBox" runat="server" AllowCustomEntry="true" InputType="Text" TextSettings-SelectionMode="Single"></telerik:RadAutoCompleteBox>
 
           List<Org> orgs = service.GetOrgsByType("National");
            natCompleteBox.DataSource = (from s in orgs orderby s.OrgDesc select s.OrgDesc).ToList();
            natCompleteBox.DataBind();

5 Answers, 1 is accepted

Sort by
0
Bozhidar
Telerik team
answered on 13 May 2013, 06:30 AM
Hi Shaw,

This issue was a bug in RadAutoCompleteBox that was introduced recently. The issue has now been fixed and you can verify this with our latest internal build.

You can also use the following workaround - just set the DropDownWidth property of the AutoCompleteBox.

 

Regards,
Bozhidar
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Shaw
Top achievements
Rank 1
answered on 14 May 2013, 12:39 AM
Awesome! This fixed my issue exactly.

Thanks
0
Erik
Top achievements
Rank 2
answered on 16 May 2013, 12:10 PM
ok. 
0
Dave
Top achievements
Rank 1
answered on 10 Jun 2013, 12:36 PM
This bug does not seem to have been fixed as of release 2013.1.417.40.  I still have to explicitly set the DropDownWidth for my results to be displayed. This caused me a bit of a headache during troubleshooting until I found this thread.
0
Bozhidar
Telerik team
answered on 10 Jun 2013, 01:02 PM
Hi David,

The bug has been fixed after the version you've specified. 
 

Regards,
Bozhidar
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
AutoCompleteBox
Asked by
Shaw
Top achievements
Rank 1
Answers by
Bozhidar
Telerik team
Shaw
Top achievements
Rank 1
Erik
Top achievements
Rank 2
Dave
Top achievements
Rank 1
Share this question
or