Pulldown menu option

I have used the following code in the entity


    @Lookup(type = LookupType.DROPDOWN, actions = {"lookup", "open"})
    @ManyToOne(fetch = FetchType.LAZY)
    @JoinColumn(name = "VENDOR_CATEGORY_ID")
    protected VendorCategory vendorCategory;

But created screen doesn’t show ‘open’ option in the screen, only lookup as attached. Any reason?

pulldown

Is it a field in FieldGroup or a separate LookupField?

Hi Konstantin
It worked after I have rebuild and restarted the app. Thank you.