Am I missing something? It just acts like a normal TextBox for me. Here's 
the simplest example:

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.IntegerBox;
import com.google.gwt.user.client.ui.RootPanel;

/**
 * Entry point classes define <code>onModuleLoad()</code>.
 */
public class IntegerBoxExample implements EntryPoint
{
public void onModuleLoad()
{
IntegerBox box = new IntegerBox();

RootPanel.get().add(box);
}
}

I can type letters into it. Is it just broken (perhaps related to the 
notice "Experimental API: This class is still under rapid development, and 
is very likely to be deleted. Use it at your own risk." note in the 
documentation)?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/zGmwodizajMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to