My application is loading external data into an observablist and then into a TableView. The scrollbar has some strange behaviour there. Most of the time it shows up but sometimes it doesn't. When I load it a few times it shows up and I can scroll the list. I have one column of images don't know if this causes trouble. The window size seems in no relation to this problem.
This is the code:
for (int i = 0; i < listOfProducts.getLength(); i++){
xmlData.add(
new Products(img.get(i), formatList.get(i),
titleList.get(i),
pubList.get(i), pageList.get(i), publisherList.get(i),
heightList.get(i)));
}
productTable.setItems(xmlData);
productTable.getItems().addAll(xmlData);? – Uluk Biy Feb 14 at 10:04