There is one other solution to this problem. In the div that contains the
select box, add disply:none to the style attribute. Here's a simple test:

        <div id="one" style="position:absolute; left:100; top:100;
width:200px; height:200px; visibility:visible; background-color:red">
            This is the top layer
        </div>
        <div id="two" style="position:absolute; left:100; top:100;
width:200px; visibility:hidden; display:none; background-color:green">
            <p>This is the bottom layer<p>
            <select size=6>
                <option>Door number one</option>
                <option>Door number two</option>
                <option>Door number three</option>
                <option>Door number four</option>
                <option>Door number five</option>
                <option>Door number six</option>
            </select>
        </div>

If you remove the display attribut from div "two", you'll see the scrollbars
from the select box showing through the top layer.

Although this solution clearly solves the problem in this example, I have
been unsuccessful implementing it with dynapi. When I try to access the css
object of my dynlayers, it is null. Can someone give me some details about
when I should be able to manipulate the css object?

Thanks,
Monica

-----Original Message-----
From: Quang Nguyen [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 29, 2001 3:46 PM
To: [EMAIL PROTECTED]
Subject: Re: [Dynapi-Help] A possible bug with form under NS6.2


I cannot find any solution to this issue. The only way I found to "hide" the

layer was just to move it outside of the screen (i.e. moveTo(-400,-500)  )


----Original Message Follows----
From: "Quang Nguyen" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: [Dynapi-Help] A possible bug with form under NS6.2
Date: Thu, 29 Nov 2001 21:21:51 +0000

Just found out that the scrollbar in NS6.2 will appear if you have define
the size of the lists(in this case: "SIZE=6")

<select NAME="AgentGroup2" SIZE=6>
        <OPTION VALUE="hjasd1">12lkajshdjka
        <OPTION VALUE="hjasd2">12lkajshdjka
</select>

It is not a problem of how you defined the layers, but it is most likely a
problem with the browser or DYNAPI.




----Original Message Follows----
From: "Quang Nguyen" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: [Dynapi-Help] A possible bug with form under NS6.2
Date: Thu, 29 Nov 2001 19:46:06 +0000

I am not able to make a layer completely dissepears if there are two lists
in the same layer, under NS6.2, winNT. However This is not a problem under
IE5.5. Here is what the code looks like:


<div id='layer1' style="visibility:hidden;"><FORM NAME="form1">
<select NAME="AgentGroup">
        <OPTION VALUE="All1">All
        <OPTION VALUE="All2">All
</select>
<select MULTIPLE SIZE=6 name=select1>
        <OPTION VALUE="hjasd1">12lkajshdjka
        <OPTION VALUE="hjasd2">12lkajshdjka
</select>
</FORM></div>


Can someone help me?
PS: I have attached the source file.

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


_______________________________________________
Dynapi-Help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dynapi-help


_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
<< test1.htm >>


_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


_______________________________________________
Dynapi-Help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dynapi-help

_______________________________________________
Dynapi-Help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dynapi-help

Reply via email to