I recently upgraded to 2013 controls from 2010. I have a radcombobox with template content. Previously, if I typed in the search box, it would search company name only. But now it searches all text, even that in the itemtemplate (such as address etc.). It is now slower, and searches text that I am not interested in searching. Can you please tell me how to search only the DataTextField and not the itemTemplate content? Thanks in advance.
                                <telerik:RadComboBox ID="RadComboBoxGoThroughPublisher" Runat="server"                                            AllowCustomText="True" AutoPostBack="False" CollapseDelay="0"                                            DataSourceID="DataSourceAllPublishers" DataTextField="Company"                                            DataValueField="PublisherID" EnableItemCaching="True" ExpandDelay="0"                                            Filter="Contains" HighlightTemplatedItems="True" MarkFirstMatch="True"                                            MaxHeight="300px"                                            SelectedValue='<%# myHelperObject.helperGetLicenseThroughPublisherID(Eval("LicenseThroughPublisherID")) %>'                                             TabIndex="8" Width="340px">                                            <ItemTemplate>                                                <span>                                                <hr />                                                </span>                                                <asp:Label ID="LabelCompanyShort" runat="server" CssClass="blueHyperlink"                                                    Text='<%# Eval("CompanyShort") %>'></asp:Label>                                                <br />                                                <span>                                                <asp:Label ID="LabelCompany" runat="server" CssClass="blueHyperlink"                                                    Text='<%# Eval("Company") %>'></asp:Label>                                                </span>                                                <br />                                                <span>                                                <asp:Label ID="lblAddress" runat="server" Text='<%# Eval("Address") %>'></asp:Label>                                                <br />                                                <asp:Label ID="lblCityStateZip" runat="server"                                                    Text='<%# myHelperObject.helperGetFormattedCityStateZip(Eval("City"),Eval("State"),Eval("ZipCode"),1,1,0) %>'></asp:Label>                                                <asp:Panel ID="PanelPartner" runat="server"                                                    Visible='<%# myHelperObject.helperGetCheckBoxTrueFalse(Eval("Active")) %>'>                                                    <div style="padding: 3px">                                                        <span>                                                        <asp:Label ID="LabelPartner" runat="server" CssClass="mediumBoldDarkAquaHeader"                                                            Text="Partner"                                                            Visible='<%# myHelperObject.helperGetCheckBoxTrueFalse(Eval("Active")) %>'></asp:Label>                                                         <asp:Label ID="LabelPartnerSynch" runat="server"                                                            CssClass="mediumBoldDarkAquaHeader" Text="- Synch Allowed"                                                            Visible='<%# myHelperObject.helperGetCheckBoxTrueFalse(Eval("SynchronizationAllowed")) %>'></asp:Label>                                                        </span>                                                    </div>                                                </asp:Panel>                                                </span>                                            </ItemTemplate>                                        </telerik:RadComboBox>