You could try to use JSNI to open a new window as you've already done:

It should look something like this:

native JavaScriptObject openWindow(String param) /*-{
        $wnd.open('scripts/display.php' + '?text=' + messageslist.getText(),
'_blank', null);
        return true;
}-*/;
I hpe it's what you searched for...

Danny

2008/11/20 darkflame <[EMAIL PROTECTED]>

>
> Any ideas?
> The text is dynamic, so I thought at first I'd just use;
>
> Window.open("scripts/display.php"+"?text="+messageslist.getText(),
> "_blank", null);
>
> Where display.php simply gets the text variable in the url and echo's
> it back.
>
> However, this has a very short limit on the text that can be
> displayed.
> Is it possible to do a simerla function with RequestBuilder? So Post
> can be used correctly?
> I have no idea if its possible to use RequestBuilder to open a php in
> a new window, so if it isn't I would welcome workarounds if its not.
>
> Cheers,
>
>
>
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to