[FIXED] IE Dropdown bleed
*NEW - Coolite Toolkit Version 0.7 now available for DOWNLOAD. See also Examples Explorer.
 

Coolite Forums

Welcome Guest ( Login | Register )
 
[FIXED] IE Dropdown bleed
Subscribe
Last Login: 3/26/2008 5:39:19 AM
Posts: 8,
Posted 3/25/2008 4:00:23 PM

Group: Coolite Early Adopter
 When I create 2 ext window and one of them contains native dropdowns (say win1), upon displaying the other window, the dropdown appears on IE.

Let me know if you need more details.
-- Dan
Last Login: 3/26/2008 5:39:19 AM
Posts: 8,
Posted 3/25/2008 4:08:53 PM

Group: Coolite Early Adopter
 I think this might be due to the renderTo. I didn't have time to check in more details, but I'll post whenever I have more.
-- Dan
Last Login: Today @ 3:28:10 PM
Posts: 1,652,
Posted 3/25/2008 10:23:59 PM

Group: Core Development Team

Hi Dan,

Can you provide a code sample demonstrating the problem? What version of IE are you using?

I tried a couple things in an attempt to reproduce the problem, although everything appears to be working correctly.

Example

<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Window with DropDownList</title>
</head>
<body>
    <form id="form1" runat="server">
        <cool:ScriptManager ID="ScriptManager1" runat="server" />
   
        <cool:Window
            ID="Window1"
            Runat="server"
            AutoShow="true"
            Collapsible="true"
            BodyStyle="padding: 6px;">
            <Content>
                <asp:DropDownList ID="DropDownList1" runat="server">
                    <asp:ListItem>Item1</asp:ListItem>
                    <asp:ListItem>Item2</asp:ListItem>
                    <asp:ListItem>Item3</asp:ListItem>
                    <asp:ListItem>Item4</asp:ListItem>
                </asp:DropDownList>
            </Content>
        </cool:Window>
       
        <cool:Window
            ID="Window2"
            Runat="server"
            AutoShow="true"
            Collapsible="true"
            BodyStyle="padding: 6px;">
            <Content>
                Window 2
            </Content>
        </cool:Window>
       
    </form>
</body>
</html>

--
Geoffrey McGill
Coolite Inc.
Development Team
Coolite Examples | Coolite API Docs | ExtJS API Docs
twitter [coolite | personal]
Last Login: 3/26/2008 5:39:19 AM
Posts: 8,
Posted 3/26/2008 5:39:19 AM

Group: Coolite Early Adopter
Hi Geoffrey,

The problem occurs only when the windows are modal.

For some reason, trying to simplify my code I can't manage to make my window modal anymore (or even make the close button work). I'm not going to send my big real code, it's a little too complex. The code below should theoretically reproduce the bug.


<cool:Window ID="WindowPopup1" runat="server" AnimateTarget="true" Modal="true" CloseAction="Hide" Width="600" Height="300" Resizable="true">
        <Content>
            <asp:UpdatePanel ID="UpdatePanelQueryBuilderKill" runat="server" UpdateMode="Conditional">
                <ContentTemplate>
                    <asp:DropDownList ID="DropDownList1" runat="server">
                    </asp:DropDownList>
                </ContentTemplate>
            </asp:UpdatePanel>
         </Content>
</cool:Window>
<cool:Window ID="WindowPopup2" runat="server"
AnimateTarget="true" Modal="true" CloseAction="Hide" Width="600"
Height="300" Resizable="true">

        <Content>

            <asp:UpdatePanel ID="UpdatePanelQueryBuilderKill" runat="server" UpdateMode="Conditional">

                <ContentTemplate>

                    <asp:DropDownList ID="DropDownList1" runat="server">

                    </asp:DropDownList>

                </ContentTemplate>

            </asp:UpdatePanel>

         </Content>

</cool:Window>


Hope you manage to reproduce it. I'm using IE6
-- Dan
Last Login: Today @ 3:28:10 PM
Posts: 1,652,
Posted 6/15/2008 6:45:50 AM

Group: Core Development Team
Hi Dan,

I *think* this problem has been fixed with the latest release. At least, I have not been able to reproduce the bleed through of the windowed controls.

You can download the latest release from the following location.

http://www.coolite.com/download/

If you're upgrading to v0.5.x, you might want to check out the following forum post. It lists a few breaking changes when moving from 0.4.x --> 0.5.x

http://www.coolite.com/forums/Topic405-12-1.aspx

Hope this helps.
--
Geoffrey McGill
Coolite Inc.
Development Team
Coolite Examples | Coolite API Docs | ExtJS API Docs
twitter [coolite | personal]
« Prev Topic | Next Topic »
Reading This Topic
Active Users: 0 ( 0 guests, 0 members, 0 anonymous members )
No members currently viewing this topic.
All times are GMT -8:00, Time now is 5:21pm