Roughian Examples Site Map - GWT Examples - Tutorials

ScrollPanel


Version 1.0 onwards

A Panel That Scrolls



Notes


The ScrollPanel is a div-based widget that lets you add scroll bars. That's pretty much all it does. It can contain only one widget


Code


String lorem = "Lorem ipsum dolor sit amet, consectetuer...";
ScrollPanel panel = new ScrollPanel(new HTML(lorem));
panel.setSize("200px", "120px");
RootPanel.get("demo").add(panel);