Hi!

Please, when posting a new question do not include all the quoted old
messages.

Better yet, create a new message and send it to the list at
[EMAIL PROTECTED]

- Jacques

2007/3/20, Srinivasa Rama Kiran Y <[EMAIL PROTECTED]>:


Hello:

I have used prototype window for client side validation.
But on some of the machines, it is taking lot of time to load the window
(I
am using mac_os_x)

Is that a problem of Web browser and its version?

Regards,
Srinivas Y

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of [EMAIL PROTECTED]
Sent: Monday, March 19, 2007 6:01 PM
To: [email protected]
Subject: Javawin Digest, Vol 12, Issue 27

Send Javawin mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Javawin digest..."


Today's Topics:

   1. Re: setConstraint and Maximize (Jacques)
   2. Imposible to bring window to front. (Tokeiito)
   3. Window showing behind overlay + above content (Ruben Causyn)
   4. Re: Window showing behind overlay + above content
      (S?bastien Gruhier)
   5. Re: Window showing behind overlay + above content (Ruben Causyn)
   6. Re: Window showing behind overlay + above content ( Erandra? . )


----------------------------------------------------------------------

Message: 1
Date: Sun, 18 Mar 2007 20:36:57 -0400
From: Jacques <[EMAIL PROTECTED]>
Subject: Re: [Javawin] setConstraint and Maximize
To: [email protected]
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="iso-8859-1"

Please note that Jack Slocum has made his Ext library compatible with
Scriptaculous and Prototype.

The upper right of the screen lets the user load the
Scriptaculous/Prototype
version.

He already have a tabs extension that should work with PWC since its using
the same JS libraries.
http://www.yui-ext.com/deploy/ext-1.0-alpha3/examples/tabs/tabs.html

This code is in alpha state, though.

- Jacques

2007/3/18, S?bastien Gruhier <[EMAIL PROTECTED]>:
>
> Tabs? tab-key or tabs like this
> http://exploding-boy.com/images/cssmenus/menus.html
> On Mar 17, 2007, at 7:29 PM, Clement Nicolaescu wrote:
>
> Great, I'll follow your example step by step to see if there is any
> difference from my code.
>
> Another question is if you have any plans for the future to make use of
> tabs in the windows ....
>
> Best regards,
> Clement
>
>
>
>
> On 3/17/07, S?bastien Gruhier <[EMAIL PROTECTED]> wrote:
> >
> > Weird,
> >
> > I have done a sample with a link with "winTest.maximize()" and
> > constraint works
> > have a look: http://prototype-window.xilinus.com/download/current/
> > samples/constraint2.html
> > Seb
> >
> > On Mar 17, 2007, at 12:49 AM, Clement Nicolaescu wrote:
> >
> > > Hello,
> > >
> > > I am very new to this script trying to set-up so it will fit my
> > > specific needs.
> > >
> > > At this moment I discovered that If I use onclick="winTest.maximize
> > > ()"  in a link it will override the previously executed
> > > winNews.setConstraint ... limits and it will maximize the window
> > > over the entire screen .
> > >
> > >
> > > Yes, if I click myself the Maximize icon on the window bar this
> > > time the constrains are considered and the window will expand
> > > within the constrain limits.
> > >
> > > Is this a normal behaviour?
> > >
> > >
> > > Best regards,
> > > Clement
> > > _______________________________________________
> > > Javawin mailing list
> > > [email protected]
> > > http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com
> >
> >
> > _______________________________________________
> > Javawin mailing list
> > [email protected]
> > http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com
> >
>
> _______________________________________________
> Javawin mailing list
> [email protected]
> http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com
>
>
>
> _______________________________________________
> Javawin mailing list
> [email protected]
> http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:

http://mail.xilinus.com/pipermail/javawin_xilinus.com/attachments/20070318/9
81c69cf/attachment-0001.html

------------------------------

Message: 2
Date: Mon, 19 Mar 2007 11:11:45 +0200
From: Tokeiito <[EMAIL PROTECTED]>
Subject: [Javawin] Imposible to bring window to front.
To: [email protected]
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="utf-8"

Good day.

Have trouble with bringing new window in top of other. Example:
http://kompiuteriai.init.lt this website is in Lithuanian, so to see what
i
mean you need to click first on Paslaugos then Kontaktai. As you will see
Paslaugos win is hiding Kontaktai window.

I've try to use toFront() in these ways:

1. After window is opened

openWin: function(newID,menu) {

        ...

        this.openedWins[newID].setHTMLContent(data);
        this.openedWins[newID].showCenter();
        this.openedWins[newID].toFront();

    }

2. Before window is opened

openWin: function(newID,menu) {

        ...

        this.openedWins[newID].setHTMLContent(data);
        this.openedWins[newID].toFront();
        this.openedWins[newID].showCenter();

    }


3. In observer onShow

return new Window(id, {
            className: 'dialog',
            width: 600,
            height: 300,
            minWidth: 220,
            minHeight: 100,
            zIndex: 100,
            onStartResize: function(a) {

            },
            onShow: function(a) {
                this.openedWins[newID].toFront();
            },
            onClose: function(a) {
                this.openedWins[newID]=null;
                this.openedWins.compact();
                this.openedWinIDs[newID]=null;
                this.openedWinIDs.compact();
                this.winContent[newID]=null;
                this.winContent.compact();
                this.winMenu[newID]=null;
                this.winMenu.compact();
            }
        });
    },


So where is the problem?
-------------- next part --------------
An HTML attachment was scrubbed...
URL:

http://mail.xilinus.com/pipermail/javawin_xilinus.com/attachments/20070319/9
29c2e15/attachment-0001.html

------------------------------

Message: 3
Date: Mon, 19 Mar 2007 12:35:42 +0100
From: "Ruben Causyn" <[EMAIL PROTECTED]>
Subject: [Javawin] Window showing behind overlay + above content
To: <[email protected]>
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="us-ascii"

I am using the window class in a div-based lay-out,

When I open a window, it's created, but it shows behind the overlay and
above all content.



I think it's a problem with some css-classes.



Is there a list of names used in the css of the window classes?



Thx for the support.

Ruben Causyn

-------------- next part --------------
An HTML attachment was scrubbed...
URL:

http://mail.xilinus.com/pipermail/javawin_xilinus.com/attachments/20070319/d
1c4b0db/attachment-0001.html

------------------------------

Message: 4
Date: Mon, 19 Mar 2007 13:08:49 +0100
From: S?bastien Gruhier <[EMAIL PROTECTED]>
Subject: Re: [Javawin] Window showing behind overlay + above content
To: [email protected]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=WINDOWS-1252; delsp=yes;
        format=flowed

Look at default.css
On Mar 19, 2007, at 12:35 PM, Ruben Causyn wrote:

> I am using the window class in a div-based lay-out,
>
> When I open a window, it?s created, but it shows behind the overlay
> and above all content.
>
>
>
> I think it?s a problem with some css-classes.
>
>
>
> Is there a list of names used in the css of the window classes?
>
>
>
> Thx for the support.
>
> Ruben Causyn
>
> _______________________________________________
> Javawin mailing list
> [email protected]
> http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com




------------------------------

Message: 5
Date: Mon, 19 Mar 2007 13:23:14 +0100
From: "Ruben Causyn" <[EMAIL PROTECTED]>
Subject: Re: [Javawin] Window showing behind overlay + above content
To: <[email protected]>
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain;       charset="iso-8859-1"

I Changed all classes I found, (top,content, ...) but still, the problem
exists.

Anyone who has an Idea?


-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of S?bastien Gruhier
Sent: maandag 19 maart 2007 13:09
To: [email protected]
Subject: Re: [Javawin] Window showing behind overlay + above content

Look at default.css
On Mar 19, 2007, at 12:35 PM, Ruben Causyn wrote:

> I am using the window class in a div-based lay-out,
>
> When I open a window, it?s created, but it shows behind the overlay
> and above all content.
>
>
>
> I think it?s a problem with some css-classes.
>
>
>
> Is there a list of names used in the css of the window classes?
>
>
>
> Thx for the support.
>
> Ruben Causyn
>
> _______________________________________________
> Javawin mailing list
> [email protected]
> http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com


_______________________________________________
Javawin mailing list
[email protected]
http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com




------------------------------

Message: 6
Date: Mon, 19 Mar 2007 23:30:25 +1100
From: " Erandra? . " <[EMAIL PROTECTED]>
Subject: Re: [Javawin] Window showing behind overlay + above content
To: [email protected]
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="iso-8859-1"

hi,

try changing the attribute named "Z-index" in css to some value like
1000..

Good luck :)

On 3/19/07, Ruben Causyn <[EMAIL PROTECTED]> wrote:
>
> I Changed all classes I found, (top,content, ...) but still, the problem
> exists.
>
> Anyone who has an Idea?
>
>
> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On
> Behalf Of S?bastien Gruhier
> Sent: maandag 19 maart 2007 13:09
> To: [email protected]
> Subject: Re: [Javawin] Window showing behind overlay + above content
>
> Look at default.css
> On Mar 19, 2007, at 12:35 PM, Ruben Causyn wrote:
>
> > I am using the window class in a div-based lay-out,
> >
> > When I open a window, it's created, but it shows behind the overlay
> > and above all content.
> >
> >
> >
> > I think it's a problem with some css-classes.
> >
> >
> >
> > Is there a list of names used in the css of the window classes?
> >
> >
> >
> > Thx for the support.
> >
> > Ruben Causyn
> >
> > _______________________________________________
> > Javawin mailing list
> > [email protected]
> > http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com
>
>
> _______________________________________________
> Javawin mailing list
> [email protected]
> http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com
>
>
> _______________________________________________
> Javawin mailing list
> [email protected]
> http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:

http://mail.xilinus.com/pipermail/javawin_xilinus.com/attachments/20070319/c
d4b1077/attachment.html

------------------------------

_______________________________________________
Javawin mailing list
[email protected]
http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com


End of Javawin Digest, Vol 12, Issue 27
***************************************


_______________________________________________
Javawin mailing list
[email protected]
http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com

_______________________________________________
Javawin mailing list
[email protected]
http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com

Reply via email to