All,
I am looking to start using a ListView rather than a tableView for a bit of work I am doing. my ListView is implemented using
@FXML
private ListView<DataRow> listView;
When I insert an object into this listView and then later try and update the object with a new value the listView is not refreshing. Inside my object I have
private SimpleStringProperty priceProperty = new SimpleStringProperty("0");
And I am updating that value. Does like view work differently to tableView in the way it updates? With the tableView and adding columns this works.