Hi,
I have added AutoCompleteBox to my page
1) Textbox is disabled ?

If i enable textbox using CSS ( firebug ) :
.racTokenList:after {

Code :
Please help me on this.. Thanks..
I have added AutoCompleteBox to my page
1) Textbox is disabled ?
If i enable textbox using CSS ( firebug ) :
.racTokenList:after {
display: block !important;
}
2) text is not appearing when enter in to text box.Code :
<telerik:RadAutoCompleteBox runat="server" ID="Recipient" Width="500px" DataSourceID="SqlDataSourceEmails" DataTextField="ContactName" DataValueField="Email" Filter="StartsWith" Skin="Metro" DropDownHeight="400px" DropDownWidth="500px"> <DropDownItemTemplate> <table> <tr> <td> <%# DataBinder.Eval(Container.DataItem, "ContactName")%>- <%#DataBinder.Eval(Container.DataItem, "Email")%> </td> </tr> </table> </DropDownItemTemplate> </telerik:RadAutoCompleteBox>Please help me on this.. Thanks..
