Question

I'm having a surprising issue: I've created a method to underline it:

protected native String jsAppendChild(Element item)/*-{
    var div = $doc.createElement("div");
    div.innerHTML = "hey do you see me";
    item.appendChild(div);
}-*/;

calling this method on a GWT Element doesn't add the element to the DOM!?

Any explanations?

Était-ce utile?

La solution

The problem is a simple typo:

div.innerHtml = "hey do you see me";

should be

div.innerHTML = "hey do you see me";

See here

Autres conseils

@Baz is right, if you are familiar with jQuery, you can use GQuery as well:

GQuery.$(item).append("<div>Ey do you see me?</div>");
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top