I am having problems changing JScrollPane components. I have an ArrayList named textFields from which I want to take elements and add to my scrollPane.
Can someone please help me? I cannot seem to remove the scrollPane's elements or seem to add the other textfields from the ArrayList. Here is my method ::
private void resetJSPComponents()
{
scrollPane.removeAll();
for(int a = 0; a < 5; a++)
{
JTextField jTF = textFields.get(a);
scrollPane.add(jTF);
}
scrollPane.revalidate();
scrollPane.repaint();
}