Hi,

I use Pivot 1.4. I'm trying to make a window with a scroll pane and a
text area within it. Following is code of my startup() method.

                TextArea textArea = new TextArea();
                textArea.setEditable(true);

                ScrollPane pane = new ScrollPane(ScrollBarPolicy.ALWAYS,
ScrollBarPolicy.ALWAYS);
                pane.add(textArea);

                window = new Window(pane);
                window.setTitle("Test application");
                window.setMaximized(true);
                window.open(display);

However the text area has zero size dimensions and cannot be used. How
can I layout the text area according to the scroll pane dimensions
automatically?

Thank you

Reply via email to