I have Parent-Child tables, where the lookup column is inside Parent. (both tables have ID, Name .. IDs are PK).
I'm trying to create a form from the Parent table, where this form I can choose Name from Child.
What I can display so far in the form, is the lookup column which is the child ID, but It's not human-readable and doesn't mean anything to my user, they need to see the Name instead of the ID.
I tried to add a new component "form" to my Parent form and edit this newly added form and add the Name to it to display both ID and Name.
What I get after the previous step, 2 created components instead of one

the default one, is related to lookup column, the other form component is the one that I added manually and the one I want it to be displayed.
But what I get is always showing this thing

and whenever I remove the "Form Component Control", it displays the lookup column 😞
Any thoughts about how to achieve this and display not just lookup column in parent form, but display more than 1 column from child into parent form.