JavaFX 8 Custom ListView Cells it's Evil
I have custom ListView cell i have HBox with two controls: Label with name field It's must generated from context of object For example i set ListView items array of Class Fields, if field type Boolean i create CheckBox, if String i create TextField and etc. Problem is: i get Field object only in method updateItem() - and only there i can create my controls. In JavaFX 7 all works fine, but on Java 8 - i dont see my controls. Is exists correct way to resolve my case? UPDATE 1 Here complete example for replicate problem: package javafx8listviewexample; import java.lang.reflect.Field; import java