I have a tableview that has columns of types (SimpleStringProperty, SimpleIntegerProperty)
STRING1 STRING2 INTEGER1 INTEGER2
####### ####### ######## ########
a b 9 10
a c 9 12
b d 0 0
Now, in the 3rd row, the 3rd and 4th column have values as 0. The type of which is SimpleIntegerProperty.
I would like it if the 0s don't show up in the table and the cell appears empty. Can you please advice on how i may do this?
P.S: I am using property listeners for making an editable table. Strings are initialized to null and hence the table is blank but integers are getting initialized to 0.