Sunday, January 30, 2011

Re: How to wrap an existing div into an HTML widget ?

It's working fine now.

My mistake was that somewhere on the page I was doing this action:

RootPanel root = RootPanel.get("content");
root.setStyleName("content_style");

so instead of doing this, I did:


Document.get().getElementById("content").removeClassName("content_style");

And now I am able to write

HTML myHtml = HTML.wrap(element); // element retrieved by GQuery.

So my problem is solved.

However, I cannot now add widgets to the element : <div id="content"></
div>
using root.add(new HTML());

Why is that? any workarounds ?

On Jan 30, 2:16 pm, Joe <joechahh...@gmail.com> wrote:
> Hi,
>
> I wonder how to wrap an existing div into an HTML widget.
>
> I am using GQuery to retrieve the element already attached to the html
> page.
>
> Now that I have a DOM div element, I use HTML myHtml =
> HTML.wrap(element);
>
> When i run the code i get the following error:
>
> java.lang.AssertionError: A widget that has an existing parent widget
> may not be added to the detach list
>         at
> com.google.gwt.user.client.ui.RootPanel.detachOnWindowClose(RootPanel.java:
> 136)
>         at com.google.gwt.user.client.ui.HTML.wrap(HTML.java:66)
>
> Any ideas, suggestions or help are welcome.
>
> Thank's,
>
> Joe

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

No comments:

Post a Comment