I've added a RadAutoCompleteBox to a web control but when you type it causes a post back even though I have set Autopostback="false".
No results are returned
<
telerik:RadAutoCompleteBox
ID
=
"RadAutoCompany"
Runat
=
"server"
InputType
=
"Text"
TextSettings-SelectionMode
=
"Single"
AutoPostBack
=
"False"
Delimiter
=
";"
Width
=
"200px"
DataSourceID
=
"SqlDataSource1"
DataTextField
=
"CompanyName"
DataValueField
=
"CompanyId"
DropDownWidth
=
"150px"
EmptyMessage
=
"type company name"
>
</
telerik:RadAutoCompleteBox
>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:MyConnectionString %>" SelectCommand="SELECT [CompanyId], [CompanyName] FROM [Company] ORDER BY [CompanyName]"></asp:SqlDataSource>