I added a ‘text entry’ component in my app, but it is linked to the user profile table. I would like it to be linked to another of my tables - but I cannot find how to do it. See attached picture.
Thank you
Is your Name component supposed to be inside the form container? Based on the indentation, I can see that it is outside the container. You need to drag it inside.
Sorry yes, I saw that you can do it when the field is in the container. Is that the only way to change the source? Why is the text entry field automatically linked to the user profile and cannot be changed? Or am I looking at it the wrong way?
The entry component is linked to whatever table the screen is linked to. I assume your tab is sourced from the User table, so any component on the screen will be linked to values in the user table. The form container is special though and becomes linked to whichever table your form is adding rows to. So if you move the Name component inside the form container, it then links to the form table instead of the user table.
Oh man I must have missed that part in the videos. "a component is linked to whatever table the screen is linked to’. That was going to be the next question - why are my fields only linked to a specific table, where is this coming from. Now I get it.
And the form container allows you to bypass that.
Actually one more question, if I want to show (not ‘enter’) fields coming from different tables on the same screen, I need to create a collection as it gives me the option to select the source - any other recommended options?
A collection is one option. Another option is to use Relations/Lookups or Query/Single Value combinations to retrieve values from other tables. Or simply just Single Value columns on their own.
Note that Relations and Queries won’t work inside of a form because data isn’t written to a table until you click on submit.
Thanks. I think I see what you mean. I need to spend a bit more time on relations/lookup - but that’d be easier to visualise once I actually reach that stage on my app.
Cheers!
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.