The problem is, that each Widget has a DOM Element it wraps. This DOM
Element is created by the document.createElement('tagname') JavaScript
method and the call to this method is not accessible to you, since it is
wrapped by GWT's Document class.An iframe contains it's own document, so you would have to hack each Widget class to redirect the document.createElement call to the iframe's content document. The only solution to this might be, using Deferred Binding to replace the GWT class Document, which wraps the call to document.createElement. Your implementation would require to change the document object, the class delegates to, dynamically. This solution is not simple since you'll have to find a secure way of changing the delegate object without crashing GWT as a whole. So it might work, but I won't recommend. Regards Jan Ehrhardt 2010/4/6 gadaleta.marco <[email protected]> > Thx. But if i want to add a widget element, a flextabale for > example??? > > On 6 Apr, 16:46, mariyan nenchev <[email protected]> wrote: > > Hi, > > > > Frame frame = new Frame(); > > > > frame.setUrl(url); > > -- > 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]<google-web-toolkit%[email protected]> > . > For more options, visit this group at > http://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.
