I have almost the same issue....

My plan is to send any widget as a html-string to the server and
generate a serversite-pdf of it...

For doing so, I just make anyWidget.toString() and use this string as
parameter. This works fine for firefox but explorer does not write
some quotes in the string
that results on invoking toString().

I tested it like Window.alert( MyWidget.toString() ) and there was
missing quotes like:

<TABLE class=" sortableTableHeader " style="WIDTH: 30px" cellSpacing=0
cellPadding=0 __widgetID="0">

instead of cellSpacing= "0" for example.


Is there a solution for this behavior of ie-explorer?






On 13 Aug., 23:23, Jason Essington <[EMAIL PROTECTED]> wrote:
> While looking at Peterk's issue with XMLParser, I've found what I  
> think is likely a bug in GWTs deserialization of String objects.
>
> If a simple rpc service is constructed like:
>    public String getString() {
>      return "This String contains \"quotes\" lets see if RPC Crashes";
>    }
> The "encoded" response from the RPC will look like:
> [1,["This String contains \\"quotes\\" lets see if RPC Crashes"],0,3]
>
> and when this is passed to
> results = eval(encoded);
>
> in ClientSerializationStreamReader it causes a javascript error.
>
> I think there must be an issue with escaping the quotes in the  
> serializer on the server.
>
> I've run into this with the OOPHM branch, but am wondering if anyone  
> has seen this in RC2?
>
> -jason

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