I've a RadAutoCompleteBox bound to a SQL data Source. When I type a text into the box, I want to have the loader/spinner show at the end as shown in this sample:
http://demos.telerik.com/aspnet-ajax/autocompletebox/examples/default/defaultcs.aspx
I've tried using the sample code which is extremely basic, but it still doesn't show the circular image at the end. Please help.
http://demos.telerik.com/aspnet-ajax/autocompletebox/examples/default/defaultcs.aspx
I've tried using the sample code which is extremely basic, but it still doesn't show the circular image at the end. Please help.
<telerik:RadScriptManager runat="server" ID="RadScriptManager1" /><telerik:RadAjaxPanel runat="server" ID="RadAjaxPanel1"> <telerik:RadAutoCompleteBox ID="RadAutoCompleteBox1" runat="server" Width="250" DropDownHeight="150" DropDownWidth="250"> </telerik:RadAutoCompleteBox> </telerik:RadAjaxPanel>protected void Page_Load(object sender, EventArgs e) { RadAutoCompleteBox1.DataSource = new List<string>() { "Europe", "America", "Asia", "Africa", "Australia" }; }