[Solved]

The problem I was having turned out to be just Button text being
wrapped every two characters (for Japanese text) or every words in
English under firefox-3, when combined with preceding 'setCellWidth
(glueWidget, "100%")'.

The original code worked fine, once I added

   DOM.setStyleAttribute(buttonB.getElement(), "whiteSpace",
"nowrap");

in the code, or add the following in CSS.

.gwt-Button {
  ...
  white-space:nowrap;
}

I just wanted to share my stupid situation in case someone encounters
similar behavior...

Thank you.


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

Reply via email to