Hello, I have a field that will not show in a table component with a filter condition to another model by its ID, but it will display if I put the same ID value into a UI field first and then join by the UI field.
Example:
- Contract model with a field for student id
- Student model with id and uuid fields
- Student table component with id and uuid fields
- Use a condition on the Student table where the id is equal to contract.studentid field
Result: only the id field shows in the table, not the uuid
Work around that works:
- Create UI field for the student id
- Update UI field with the contract.studentid value
- Use filter condition on student model where the id is equal to ui.studentid
Result: both the id and uuid field show in the table
I can’t figure out what the issue is. Any ideas?