While I was spending some time on the Atlas AutoCompleteExtender control, a thought crossed my mind, which is changing the background color of the dropped down panel. Umm, I noticed a property called “ DropDownPanelID “ which you can use to link for a “customzied“ panel to be dropped down. But, I found myself able to change most of the panel's properties expect the ones related to COLORING stuff. And here's my code.
<asp:TextBox ID="TextBox1" runat="server">< FONT>asp:TextBox>
<div runat="server" id="myPanel" style="background-color: aqua; font: messagebox; text-transform: lowercase; color: navy; text-decoration: overline; background-image: none;">< FONT>div>
<atlas:AutoCompleteExtender DropDownPanelID="myPanel" runat="server" ID="autoComplete1" >
<atlas:AutoCompleteProperties TargetControlID="TextBox1"
Enabled="True" ServicePath="AutoCompleteService.asmx"
ServiceMethod="GetWordList" />
< FONT><atlas:AutoCompleteExtender>
The text-transform, text-decoration and font worked fine, but the other properties didnt work at all. I also tried to change the < div> with an <asp:Panel> control. But I also got the same resluts. So, guys, set me up if it's my mistake .. or fix it up if it's Atlas's mistake :-) .