I'm using a SQL DataSource to bind to RadAutoCompleteBox in the Page Load. The RadAutoCompleteBox is inside a RadAjaxPanel. However, when I type anything into the box, I do not see the loading/spinning image at the end of the text box as shown in the sample here:
http://demos.telerik.com/aspnet-ajax/autocompletebox/examples/templates/defaultcs.aspx
Here's my code:
http://demos.telerik.com/aspnet-ajax/autocompletebox/examples/templates/defaultcs.aspx
Here's my code:
<
telerik:RadAjaxPanel
runat
=
"server"
ID
=
"Panel1"
>
<
telerik:RadAutoCompleteBox
runat
=
"server"
ID
=
"MailTo"
Filter
=
"StartsWith"
DropDownHeight
=
"400"
DropDownWidth
=
"250"
AllowCustomEntry
=
"true"
DataTextField
=
"Text"
DataValueField
=
"Value"
>
<
DropDownItemTemplate
>
<
table
cellpadding
=
"0"
cellspacing
=
"0"
>
<
tr
>
<
td
align
=
"left"
style
=
"width: 50%; padding-left: 10px;"
>
<%# DataBinder.Eval(Container.DataItem, "Text")%>
</
td
>
</
tr
>
protected void Page_Load(object sender, EventArgs e)
{
MailTo.DataSource = GetUsers();
MailTo.DataBind();
}
</
table
>
</
DropDownItemTemplate
>
</
telerik:RadAutoCompleteBox
>
</
telerik:RadAjaxPanel
>