I have a JPA entity which has a property of a type of another:
@ManyToOne(fetch=FetchType.LAZY)
private ComponentType type;
However, when using AutoCrud (only to test things out now), the react component renders a readonly textarea where I want to select the value for the type.