Hi Matej,

I am currently using Wicket-1.2.4, and also tried the build 1.2.5 version
from SVN yesterday. It doesn't work in both these versions.

I have also noticed one more issue in 1.2.5, after getting the latest
version from the SVN, the pop ups don't show the images from the images
folder in the context instead tries to get them from alias specified in the
web.xml eg. web.xml entry 
     <servlet-mapping>
        <servlet-name>WicketApplication</servlet-name>
        <url-pattern>/app/*</url-pattern>
    </servlet-mapping>

The images are tried to be fetched from http://localhost/xyz/app/images
instead of xyz/images. I don't have the trace right now, if needed I will
post it later. I reverted back to 1.2.4 and everything except the pop up
inside a a pop up works fine.

Thanks,
Sajeev



Matej Knopp-2 wrote:
> 
> what version of wicket are you using?
> 
> On 4/3/07, tooy li(Gmail) <[EMAIL PROTECTED]> wrote:
>> no,it's still here today, :P
>> >
>> > i believe martijn already fixed this a few days ago
>> >
>> > -igor
>> >
>> >
>> > On 4/2/07, Stefan Lindner <[EMAIL PROTECTED]> wrote:
>> >>
>> >> I think this is a general IE problem. The ModalWindow maintainers have
>> >> taken care of this only for one level (modal window opended on a
>> normal
>> >> window). In this case all dropdowns are hidden befere the model window
>> opens
>> >> and re-displayed afterwards.
>> >> This was an error message 2 or 3 weeks before but the wickt gurus only
>> >> stated "crazy what people are doing with wicket" :-)
>> >> If work around this problem by hiding the dropdowns and re-displying
>> them
>> >> by myself. I use some code like
>> >>
>> >>
>> >> private List<Boolean> visibilityBeforeHide;
>> >>
>> >> private List<Component>hideThemBefore;
>> >>
>> >> if (visibilityBeforeHide == null)
>> >>
>> >>    visibilityBeforeHide = new ArrayList<Boolean>();
>> >>
>> >> else
>> >>
>> >>    visibilityBeforeHide.clear();
>> >>
>> >> for (Component c : hideThemBefore) {
>> >>
>> >>    visibilityBeforeHide.add(c.isVisible());
>> >>
>> >>    c.setVisible(false);
>> >>
>> >>    target.addComponent(c);
>> >>
>> >> }
>> >>
>> >>
>> >>
>> >> modalWindow.setWindowClosedCallback(new
>> ModalWindow.WindowClosedCallback()
>> >> {
>> >>
>> >>    private static final long serialVersionUID = 1L;
>> >>
>> >>    public void onClose(AjaxRequestTarget target) {
>> >>
>> >>    int i = 0;
>> >>
>> >>    for (Component c : hideThemBefore) {
>> >>
>> >>       c.setVisible(visibilityBeforeHide.get(i).booleanValue());
>> >>
>> >>       target.addComponent(c);
>> >>
>> >>       i++;
>> >>
>> >>    }
>> >>
>> >>    // You must add the parent panel (the panel that opende the popup
>> >> window) to the target
>> >>
>> >>    // The components will not be re-displayed otherwise.
>> >>
>> >>    target.addComponent(<parent panel>);
>> >>
>> >> }
>> >>
>> >> modalWindow.show(target);
>> >>
>> >>
>> >>
>> >>
>> >>
>> >> > I am having a strange problem in IE 6.0 with modal windows. The use
>> case
>> >> > follows:
>> >> > I have one modal window with drop downs and I have another modal
>> window
>> >> > called from first modal window, when the second modal window opens I
>> can
>> >> see
>> >> > the drop downs from the first modal window in the second. I have
>> tried
>> >> > setting the cookie name, but no change. The same works on IE 7.0 and
>> >> Mozilla
>> >> > 2.0. I am unable to figure out the issue. Has someone encountered
>> the
>> >> same
>> >> > issue, please help me.
>> >> >
>> >> > Thanks,
>> >> > Sajeev
>> >>
>> >>
>> >>
>> -------------------------------------------------------------------------
>> >> Take Surveys. Earn Cash. Influence the Future of IT
>> >> Join SourceForge.net's Techsay panel and you'll get the chance to
>> share
>> >> your
>> >> opinions on IT & business topics through brief surveys-and earn cash
>> >>
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> >> _______________________________________________
>> >> Wicket-user mailing list
>> >> Wicket-user@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >>
>> >>
>> -------------------------------------------------------------------------
>> Take Surveys. Earn Cash. Influence the Future of IT
>> Join SourceForge.net's Techsay panel and you'll get the chance to share
>> your
>> opinions on IT & business topics through brief surveys-and earn cash
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> _______________________________________________
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
> 
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share
> your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> _______________________________________________
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Re%3A-Multiple-Modal-Windows-%28sunraider%29-tf3506355.html#a9815866
Sent from the Wicket - User mailing list archive at Nabble.com.


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to