output of ext gwt label rootpanel,get.add?
Posted
by msaif
on Stack Overflow
See other posts from Stack Overflow
or by msaif
Published on 2010-04-13T08:42:18Z
Indexed on
2010/04/15
12:53 UTC
Read the original article
Hit count: 493
i have <div id="abc"></div>
I executed RootPanel.get("abc").add(new Label("aaaaaaaaaaaaa"));
from GWT.
then acutually GWT generates what kind of html tag??
is it like <font>aaaaaaaaaaaa</font>
????
which i mean the output will be
<div id="abc"><font aaaaaaaaaaaa></font></div>
??
© Stack Overflow or respective owner