Hi,
Can you try setting the CompletionListElementID property to a "DIV" element ?
This way there will be no issues of overriding styles from the <Table> element
<ajaxToolkit:AutoCompleteExtender ID="ProductSKU" runat="server"
TargetControlID="txtSKU"
ServicePath="GetSKU.asmx"
ServiceMethod = "GetOneProductSKU"
MinimumPrefixLength="3"
CompletionInterval="800"
CompletionListElementID
="divCompletionImages"
CompletionSetCount="12" >
</ajaxToolkit:AutoCompleteExtender>
<divid="divCompletion" class="<yourCssClassName>" >
</div>
We have now introduced 3 new Css properties on AutoComplete. They will be available in the next version of the Toolkit around end of this month. You can download the latest bits from theSource Code tab on CodePlex and give us feedback.
CompletionListCssClass="autocomplete_completionListElement"
CompletionListItemCssClass="autocomplete_listItem"
CompletionListHighlightedItemCssClass="autocomplete_highlightedListItem"
Hi,
Thanks, that solved my issue.
No comments:
Post a Comment