Relations
Create relationships and link rows together.
Relations can be used in Jet Admin to create relationships between rows, linking together their data across tables.
The related field allows you to represent the relationships between related records by creating links between them. This is particularly helpful when you have multiple tables of related items. For instance, if you have a table of Customers
and a table of Companies
, you can use a related field to link each Customer row
to the Company
that they work for.
Single relations
Single relations show a one-to-one relationship. This is where one item relates to one other item.
Multiple relations
Multiple relations show a one-to-many relationship. This is where one item relates to a list of other items.
How to create relations in Jet Admin
In Jet, you can create relations between values using a Link to record column. With this column, you specify the type of relation you want - single or multiple. Your project then applies the relation to the values and tables specified.
Check for matching values
Before adding a Relation column, you must first check that the values match the columns that will be connected. Items cannot be linked together unless they match.
In this example, each employee in Contact
has a Company
they work in.
In the
Contact
table, make sure there’s a column for the name of the employee’sCompany
.In the
Company
table, make sure there’s a column for the name of the location that can be tied to theContact
table.
Build single relations
Here we'll show how to simply create a related Company field for each Customer. Each customer has company_id
, to display and link the company in the Customer table let's specify link to record
. Follow the steps:
Click on the
Company_id
fieldClick on the
Number
Select the
Link to Record
optionChoose the related Resource
Choose the related Collection
Choose ID for the Display Field
Related field and Display field are set automatically under the context but you can change these values.
Multiple relations
One record in a table might be connected to many records in another table. For example, I might have a table with my customers and another table with my sales data, and each customer might have multiple orders.
With Jet Admin, you can use this kind of connection to display or work with the connected records that you want.
Example: Create a table that will show all the properties from the landlord selected in the landlord's table.
Select the resource with the records you want to display. In this case, the table will be with the property's records.
Go to the Data section
Add a filter to the table. You can do this when adding the table, or afterward in the table menu.
Choose the related fields and the method of filtering. In this case, the field will be Landlord ID, and the method, Landlord ID equals.
Click on the
Formula
icon, to specify the filterSelect the component and field that you want to use to filter. In this example, that will be the ID field from the landlord's table.
Choose the Selected Row -> ID
Last updated