You are getting an error because the line of code: delete window[callback];
doesn't do what the author of that tutorial thinks it ought to do in IE8 and throws an exception instead. I can't tell if that's because there's a bug in IE8 or in the author's understanding of the delete operator. Either way it's not safe to use the code in that example - window[] will keep growing every time you do another JSON call on IE8. As others have pointed out, JsonpRequestBuilder is probably a better bet for you if you've upgraded to GWT 2.0. On Apr 21, 2:42 am, nasionalem <[email protected]> wrote: > Hello Eggsy84, > > I am still getting same JavaScript error. > I didnt see any changes in the turorial, but I did all the steps again > but I got same > error.http://code.google.com/webtoolkit/doc/latest/tutorial/Xsite.html#design > > -- > 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 > athttp://groups.google.com/group/google-web-toolkit?hl=en. -- 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.
