I have an autocomplete box wich is loaded dynamically inside a RadGrid nestedviewtemplate. It seems that in this scenario the "EnableClientFiltering" property set to true won't work and always provide an empty dropdown
Any hint on how to overcome the issue?
<telerik:RadAutoCompleteBox runat="server" ID="ProvinciaId" AllowCustomText="false" MaxLength="80" EmptyMessage="Provincia di nascita" CssClass="span3" DataSourceID="SqlDataSource1" DataValueField="ProvinciaId" DataTextField="ProvinciaName" Filter="StartsWith" IsCaseSensitive="false" DropDownHeight="250" TextSettings-SelectionMode="Single" TokensSettings-AllowTokenEditing="false" AllowCustomEntry="false" InputType="Text" EnableClientFiltering="true" /><asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:EvaConnection %>" ProviderName="System.Data.SqlClient" SelectCommand="SELECT [ProvinciaId], [ProvinciaName] FROM [EVA_Province] ORDER BY [ProvinciaName] ASC"></asp:SqlDataSource>Any hint on how to overcome the issue?