I am using Grocery CRUD and I have two tables 'team' and 'players' respectively. A player can be a part of one team in an tournament and part of another in some other tournament. So a many-to-many relationship exist between 'team' and 'players', which is maintained in a separate joining table. When the user selects a team from a drop-down then only the players belonging to the team should appear in another drop-down and not all the players from the players table. I got few libraries extension for it, but were supporting one-to-many relationship and not many-to-many. Please Help.