In GWT, my code:
rootPanel.add(new Label("© " + "2014" + " MyCorp"));
Displays nicely:
© 2014 MyCorp
instead of
© 2014 MyCorp
Any hint?
I would just do:
rootPanel.add(new Label("© 2014 MyCorp"));
or using HTML:
HTML
rootPanel.add(new HTML("© 2014 MyCorp"));
You can try this one also:
Label label1=new Label(); label1.getElement().setInnerHTML("© " + "2014" + " MyCorp");
I would just do:
or using
HTML: