friends I'm doing an application in javafx which has to perform the CRUD operations, now I have a combobox with the name typedocumento, now I capture the information and I keep everything well, when updating the data I could not make the combobox show me the desired value Well that's how I fill the combobox
TipoDocumentos.getItems().addAll(
"Cedula de ciudadania",
"Tarjeta de identidad",
"Pasaporte",
"Cedula de extranjeria"
);
and that's how I capture the information
String documen = (String) TipoDocumentos.getValue();
Well, I'm new to javafx