How do I add image to GWT Button or how do I use Mosaic's Buttons to add image. I can't figure out how to use THIS example in my code. What library do I need to add. I have Mosaic Library in my project and I can use it but the example that they have there does not work for me.

Thanks

link|improve this question

What code have you tried, and what is the result? – CPerkins Sep 22 '09 at 1:11
If you want to have image and text then I probably created what you want. I wrote a post on this SO question: stackoverflow.com/questions/1853042/… – Juri Mar 15 '10 at 17:25
feedback

3 Answers

up vote 13 down vote accepted

If you just want to add an image to a normal GWT Button, then PushButton is the way to go:

PushButton pushButton = new PushButton(new Image("test.png"));
link|improve this answer
feedback

PushButton does not have the same behavior, and you have a prettier solution than creating yourself an image tag :

Image img = new Image("whatever.jpg");
Button button = new Button();
button.getElement().appendChild(img.getElement());
link|improve this answer
feedback

Alternatively, you this method.

Button editRow = new Button("Edit Row");
editRow.setHTML(("<img border='0' src='rowEdit.Png' />");

I have found the the PushButton appears to have a problem with calculating its x, y click point correctly, which the normal button does not have.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.