Hello,
I have a RadAutoCompleteBox control within a RadGrid. I am able to bind the control during the page load. Although, when I start typing in the RadAutoCompletebox, I receive the following message.

Grid HTML:
<telerik:GridTemplateColumn HeaderText="Media Title" UniqueName="MediaTitle" HeaderStyle-HorizontalAlign="Center" HeaderStyle-Width="330px" ItemStyle-Wrap="false">
<ItemTemplate>
<telerik:RadAutoCompleteBox ID="cboMaster" InputType="Text" runat="server" Filter="Contains" Width="300px" DropDownWidth="250px">
</telerik:RadAutoCompleteBox>
</ItemTemplate>
</telerik:GridTemplateColumn>
RadAutoCompleteBox Binding (Page_Load):
cboMaster.DataValueField = "ID";
cboMaster.DataTextField = "Title";
cboMaster.DataSource = GetMediaSourceTitles();
cboMaster.DataBind();
What am I missing so users can type in the RadAutoCompleteBox and display the matching entries?
Thank You in Advance!
I have a RadAutoCompleteBox control within a RadGrid. I am able to bind the control during the page load. Although, when I start typing in the RadAutoCompletebox, I receive the following message.
Grid HTML:
<telerik:GridTemplateColumn HeaderText="Media Title" UniqueName="MediaTitle" HeaderStyle-HorizontalAlign="Center" HeaderStyle-Width="330px" ItemStyle-Wrap="false">
<ItemTemplate>
<telerik:RadAutoCompleteBox ID="cboMaster" InputType="Text" runat="server" Filter="Contains" Width="300px" DropDownWidth="250px">
</telerik:RadAutoCompleteBox>
</ItemTemplate>
</telerik:GridTemplateColumn>
RadAutoCompleteBox Binding (Page_Load):
cboMaster.DataValueField = "ID";
cboMaster.DataTextField = "Title";
cboMaster.DataSource = GetMediaSourceTitles();
cboMaster.DataBind();
What am I missing so users can type in the RadAutoCompleteBox and display the matching entries?
Thank You in Advance!