Click here to Skip to main content
15,893,644 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
hello sir,
i am use ajax autocomplete extender for textbox. it work done perfectly.
but when i try to write in the textbox then lose the css style of the textbox.
it display list but textbox style look like regular.

so how to prevent this? plz help me...
Posted
Comments
nrgjack 21-Jan-13 9:44am    
did you imported ajaxcontroltoolkit css ?
jkpatelce 21-Jan-13 10:34am    
yes

1 solution

did you explicitely declare the css classes?

XML
<asp:TextBox ID="yourTxt" runat="server" Width="500px"></asp:TextBox>
                <ajaxToolkit:AutoCompleteExtender ID="yourTxt_AutoCompleteExtender" runat="server"
                    FirstRowSelected="true" DelimiterCharacters="" Enabled="True" MinimumPrefixLength="3"
                    ServiceMethod="yourMethod" CompletionSetCount="5" CompletionInterval="300"
                    EnableCaching="true" CompletionListCssClass="autocomplete_completionListElement"
                    CompletionListItemCssClass="autocomplete_listItem" CompletionListHighlightedItemCssClass="autocomplete_highlightedListItem"
                    ServicePath="~/WS/yourWS.asmx" TargetControlID="yourTxt">
                </ajaxToolkit:AutoCompleteExtender>


CSS
/* *********** autocomplete   ******** */
.autocomplete_completionListElement { visibility: hidden; margin: 0px !important; padding-left: 0px !important; background-color: #ffffff; color: #000000; border: buttonshadow; border-width: 1px; border-style: solid; cursor: default; overflow: auto; height: 100px; text-align: left; list-style-type: none; }
.autocomplete_highlightedListItem { background-color: #eee; color: black; padding: 1px; }
.autocomplete_listItem { background-color: #fff; color: #000; padding: 1px; }



that is working in my webapp


try F5 to reload the style...


best regards j
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900