<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>ASP.NET AJAX Control Toolkit</title><link>http://forums.asp.net/1022.aspx</link><description>Here's your place to discuss everything in and about the AJAX Control Toolkit</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Popup Control loosing visibility with dropdown lists.</title><link>http://forums.asp.net/thread/1273270.aspx</link><pubDate>Tue, 02 May 2006 00:49:15 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1273270</guid><dc:creator>David Anson</dc:creator><author>David Anson</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1273270.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1022&amp;PostID=1273270</wfw:commentRss><description>&lt;font face=Verdana size=2&gt;FYI: The behavior changes for PopupControl in the next release are such that this issue is no longer a problem. Yay!&lt;/font&gt;</description></item><item><title>Re: Popup Control loosing visibility with dropdown lists.</title><link>http://forums.asp.net/thread/1270269.aspx</link><pubDate>Thu, 27 Apr 2006 19:04:39 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1270269</guid><dc:creator>David Anson</dc:creator><author>David Anson</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1270269.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1022&amp;PostID=1270269</wfw:commentRss><description>&lt;font face=Verdana size=2&gt;Thank you for tracking this down, Coleman! I've just made a note to look at making a change like this for our next release.&lt;/font&gt;</description></item><item><title>Re: Popup Control loosing visibility with dropdown lists.</title><link>http://forums.asp.net/thread/1270100.aspx</link><pubDate>Thu, 27 Apr 2006 16:23:15 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1270100</guid><dc:creator>Coleman</dc:creator><author>Coleman</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1270100.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1022&amp;PostID=1270100</wfw:commentRss><description>&lt;p&gt;The following appears to resolve the issue in the _onMouseOut function of the Popup Control.&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;&lt;font size=1&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;pre class=coloredcode&gt;&lt;span class=kwd&gt;&lt;/span&gt;&amp;nbsp;&lt;span class=kwd&gt;if&lt;/span&gt; (!(currentElement))
        {
            currentElement = &lt;span class=kwd&gt;event&lt;/span&gt;.srcElement;
        }&lt;/pre&gt;&lt;pre class=coloredcode&gt;Method follows:
&lt;/pre&gt;&lt;pre class=coloredcode&gt;&lt;span class=kwd&gt;this&lt;/span&gt;._onMouseOut = function() {
        &lt;span class=cmt&gt;// Track mouse position&lt;/span&gt;
        _pointerOverPopup = &lt;span class=kwd&gt;false&lt;/span&gt;;
        &lt;span class=cmt&gt;//debugger;
        // Walk the "to element"'s parents to see if the mouse is going over a child of the popup&lt;/span&gt;
        var currentElement = (&lt;span class=kwd&gt;event&lt;/span&gt;.toElement ? &lt;span class=kwd&gt;event&lt;/span&gt;.toElement : &lt;span class=kwd&gt;event&lt;/span&gt;.relatedTarget);
        
        &lt;span class=kwd&gt;if&lt;/span&gt; (!(currentElement))
        {
            currentElement = &lt;span class=kwd&gt;event&lt;/span&gt;.srcElement;
        }
        
        &lt;span class=kwd&gt;if&lt;/span&gt; (_popupElement) {
            &lt;span class=kwd&gt;while&lt;/span&gt; (currentElement) {
                &lt;span class=kwd&gt;if&lt;/span&gt; (currentElement.id == _popupElement.id) {
                    &lt;span class=cmt&gt;// Mouse is going over a child of the popup&lt;/span&gt;
                    _pointerOverPopup = &lt;span class=kwd&gt;true&lt;/span&gt;;
                    &lt;span class=kwd&gt;break&lt;/span&gt;;
                }
                currentElement = (currentElement.parentElement ? currentElement.parentElement : currentElement.parentNode);
            }
        }

        &lt;span class=cmt&gt;// Hide the popup&lt;/span&gt;
        &lt;span class=kwd&gt;if&lt;/span&gt; (!_pointerOverPopup) {
            _popupBehavior.hide();
            _popupVisible = &lt;span class=kwd&gt;false&lt;/span&gt;;
        }
    }&amp;nbsp;&lt;/pre&gt;&lt;/p&gt;</description></item><item><title>Popup Control loosing visibility with dropdown lists.</title><link>http://forums.asp.net/thread/1269962.aspx</link><pubDate>Thu, 27 Apr 2006 14:35:06 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1269962</guid><dc:creator>Coleman</dc:creator><author>Coleman</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1269962.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1022&amp;PostID=1269962</wfw:commentRss><description>&lt;p&gt;I'm using the Popup Control that contains a dropdown and cascading dropdown extenders. The popup works ok but when I go to select an item from any of the drop downs with the mouse, the dropdown "items" list remain visible (and I can select from it) but the popup and all controls within disappear (including the actual dropdown). I can select the item. When I navigate to the target textbox of the popup the pop displays again and ddl has the item I selected, selected. Once in the popup, if I don't use the mouse and only tab through the ddls, it works as expected.&lt;/p&gt;</description></item></channel></rss>