Hi,
Is it possible to use the RadAutoCompleteBox inside a FormView ?
What is the parameter to link the "bind" attribute ? Text, Value, DbText ?
For example :
<asp:FormView ID="fvDetail" runat="server" DataKeyNames="Id" DataSourceID="eds">
<EditItemTemplate>
<telerik:RadAutoCompleteBox ID="racb" runat="server" AllowCustomEntry="false" Delimiter="," DropDownHeight="150" DropDownWidth="250" InputType="Token" Text='<%# Bind("Ids") %>' Width="100%">
<Entries>
<telerik:AutoCompleteBoxEntry Text="One" Value="1" />
<telerik:AutoCompleteBoxEntry Text="Two" Value="2" />
<telerik:AutoCompleteBoxEntry Text="Three" Value="3" />
</Entries>
</telerik:RadAutoCompleteBox>
</EditItemTemplate>
</asp:FormView>
And is it possible to open the dropdownlist when the box has the focus ?
Thanks in advance !
Is it possible to use the RadAutoCompleteBox inside a FormView ?
What is the parameter to link the "bind" attribute ? Text, Value, DbText ?
For example :
<asp:FormView ID="fvDetail" runat="server" DataKeyNames="Id" DataSourceID="eds">
<EditItemTemplate>
<telerik:RadAutoCompleteBox ID="racb" runat="server" AllowCustomEntry="false" Delimiter="," DropDownHeight="150" DropDownWidth="250" InputType="Token" Text='<%# Bind("Ids") %>' Width="100%">
<Entries>
<telerik:AutoCompleteBoxEntry Text="One" Value="1" />
<telerik:AutoCompleteBoxEntry Text="Two" Value="2" />
<telerik:AutoCompleteBoxEntry Text="Three" Value="3" />
</Entries>
</telerik:RadAutoCompleteBox>
</EditItemTemplate>
</asp:FormView>
And is it possible to open the dropdownlist when the box has the focus ?
Thanks in advance !