The approach you mention will not work. In fact, if it did work, it would be a major security issue.
If you want to invoke an external javascript method, you will have to write some jsni code. See http://googlewebtoolkit.blogspot.com/2008/07/getting-to-really-know-gwt-part-1-jsni.html The section "Using JSNI to access external JavaScript code" is what you are looking for. --sri On Sep 10, 11:20 am, Senshi <[email protected]> wrote: > Hi > I have Problem with call function external javascript in IE7 not draw > this in reload html page > > texto = new HTML(); > texto.setHTML("<script>buildRow();</script>"); > panel.add(texto); > > no call function ..?? > > ...no show alert?? > texto = new HTML(); > texto.setHTML("<script>alert(\"Hello\");</script>"); > panel.add(texto); > > Please help --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
