I have wondered about this for years and have seen questions posted out there on this but never have found an answer.
Let's say you have a Form with datasource A, B, and C. "A" will act as the parent and both "B" and "C" join to "A" as an Inner Join. Now, I have logic on the Table object of A in the modifiedField() method. Inside that method, you should be able to access relating data by using this.joinChild(). However, since there are multiple child datasources, which one will it pick? And also, how do I access the one that it doesn't automatically pick?
I found there is a this.datasource(), but I didn't see any methods within that would seem to get to other datasources.