I have created a textfiel disable in JavaFX, but when I run and load the data it does not let me copy or select anything, apparently disable property disables my text box.
textFiel.setDisable (true);
I tried to change the editable property to true textFiel.setEditable (true);
But it still does not work.
Any idea how I can solve this or that I'm not doing well? Thanks !!