That is all I need to answer my last question .
If you look at my last question, you will see my class containing four fields corresponding to the four columns of my table
public static class ContactOptions { private final StringProperty one; private final StringProperty two; private final StringProperty three; private final StringProperty four; ContactOptions(String col1, String col2, String col3, String col4) { this.one = new StringProperty(col1); this.two = new StringProperty(col2); this.three = new StringProperty(col3); this.four = new StringProperty(col4); } public String getOne() { return one.get(); } public String getTwo() { return two.get(); } public String getThree() { return three.get(); } public String getFour() { return four.get(); } }
How do I get the GUI to update after running ContactOptions.one.set ?
When I scroll down and make a backup, it updates. How can I update it without scrolling.
I also asked about this at https://forums.oracle.com/forums/thread.jspa?threadID=2275725
Dorothy
source share