Hi
There is a known anomality in IE - Don't use spaces in the title
parameter. So change your code to:
Window.open("http://someurlhere", "Window_Title", "resizable=yes");
Hermod
On Feb 2, 8:26 am, "alex.d" <[email protected]> wrote:
> My suggestion is that your URL/title/parameter_string has invalid
> characters. Check it or post an actuall line of code here.
>
> On 30 Jan., 18:54, Stan <[email protected]> wrote:
>
> > The following code is generating errors on IE7 and IE8:
>
> > Window.open("http://someurlhere", "Window Title", "resizable=yes");
>
> > and also the sample code from PopupPanel:
>
> > new MyPopup().show();
>
> > The first example turns into Javascript code:
> > $wnd.open('http://someurlhere', 'Window Title', 'resizable=yes');
> > and emits an error "Invalid Argument" with the character position at
> > the "$" character.
>
> > Both examples give different errors at different times. Stepping
> > through the Javascript in the IE debugger often shows an error "not
> > implemented" in the code
>
> > function dispatchEventImpl(evt, elem, listener){
> > var prevCurrentEvent;
> > if (elem == sCaptureElem) {
> > if ($eventGetTypeInt(evt) == 8192) {
> > sCaptureElem = null;
> > }
> > }
> > prevCurrentEvent = currentEvent;
> > currentEvent = evt;
> > try {
> > listener.onBrowserEvent(evt);
> > }
> > finally {
> > currentEvent = prevCurrentEvent;
> > }
>
> > }
>
> > with the character position at the opening brace following "finally".
>
> > Both these examples work fine with Firefox.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---