Hi,
I have a problem with method scrollTo.
example:
I would like to have a scrolled window to see the end (or middle) of label.
I tried following but it does not work:
window.scrollToRight();
window.scrollTo(1000,0);
and
label.scrollToRight();
I didn't find the answer in all posts concerned with scrolling in forum.
Can anybody help ?
I have a problem with method scrollTo.
example:
Code:
Window window = new Window(); window.setWidth(500); Label label = new Label("hello"); label.setBackgroundColor("red"); label.setWidth(1200); window.addItem(label); RootPanel.get("main").add(window);
I tried following but it does not work:
window.scrollToRight();
window.scrollTo(1000,0);
and
label.scrollToRight();
I didn't find the answer in all posts concerned with scrolling in forum.
Can anybody help ?
Comment