Anyone else find that the mouse "jumps over" the divider in a JSplitPane
under the Jdk1.2pre2 and Jdk1.2.2rc2 (aint tried any more)
I have the following 'sets' in operation:
.setOneTouchExpandable(true);
.setContinuousLayout(false);
.setDividerSize(8);
.setDividerLo
ddWindowListener (new BasicWindowMonitor());
> JTextField b1 = new JTextField("Button 1");
> JTextField b2 = new JTextField("Button 2");
> b1.addActionListener(this);
> b2.addActionListener(this);
> b1.addFocusListener(this);
> b2.
ew JTextField("Button 1");
JTextField b2 = new JTextField("Button 2");
b1.addActionListener(this);
b2.addActionListener(this);
b1.addFocusListener(this);
b2.addFocusListener(this);
JSplitPane test = new JSplitPane(
Try also a myList.revalidate() also. It works.
Catalin CLIMOV.
Trieu Dang wrote:
> Hi,
> My application uses a JSplitPane in which the top and bottom components
> are JScrollPane. The bottom scrollpane contains a JList. My list changes
> depending on the user's actions
Hi,
My application uses a JSplitPane in which the top and bottom components
are JScrollPane. The bottom scrollpane contains a JList. My list changes
depending on the user's actions so I have to use setListData, which must
be followed by repaint(), otherwise the data wouldn't ch