Hello, I have a question about the interaction between widgets.
Context : My data is about societies and their establishment. One society (ESRI for example) can have a multitude of establishment around the world. The society is identify in the table by a field called 'Siège' (headquarters). When it's 1, the establishment is the headquarters, and if it's 0, it's one of the many establishment of the society.
What I want to do : I want to allow my users to see with a widget List all of the societies implemented in my data. But if i use my data without any modification, the headquarter (the society) and all of the establishment appears in the list. So for example if ESRI have 100 establishment in the world, it appears 100 times. Not very appreciable for a List of Society. In the worst case I have the french society "La Poste" who appears 9978 times.
To resolve this problem i use this solution : I created a view of my data with a filter on the 'Siège' field to keep only the "1" (the society). It's good my list have only 1 element each society.
But I want to do this : With filter widgets, i want to allow the user to filter the list of society with multiple parameter : date of creation, number of employees, etc. This is not a problem and it work very well.
However, I would like it if, after having made the filters, the user could select one of the companies in the list, and in a table widget all the establishments linked to this company would appear. But I can't find how to do it.
When the user use the filter, the table is actualised with all of the establishment depending of the remaining society in the list. But if it stay for example 7 society and the user want to select one of them, the table doesn't actualized the information. The only solution that the user have is to filter very precisely to keep only ONE society on the list. But this solution is not ergonomic.
Anyone have an idea of how to implement my idea ?