edvin
09/26/2018, 6:15 AMItemViewModel
, you can do:ValV
09/26/2018, 12:52 PMvalue { ... }
function exists and what it does. The only thong remains -- how to use cell factories. useTextField
requires string converter. Shall I try in standard Java-way, or TFX has some tricks to handle it? makeEditable
complains about it is not implemented for specified class ...SimpleObjectProperty
ValV
09/26/2018, 12:55 PMedvin
09/26/2018, 2:03 PMvalue { }
is an easy way to supply a cellValueFactory
in the rare case where you can't simply refer to the property (like in your case). If your property is not a String
and you want to use useTextField
, you need to supply a StringConverter<T>
to tell TornaddoFX how to convert your value to (and possibly from) a String
so it can be displayed.edvin
09/26/2018, 2:03 PM