Hello DOJO
In a Dashboard we are trying to display a table with several data parameters line by line, for elements filtered by protocol
The GQI request is OK, the display is OK
We want to filter the table by using only a view nested elements
In this question, Dashboards - how to display a list of services under a certain view? - DataMiner Dojo
it seems that using "get view relations" is the solution or perhaps "get view"
We are not able to create the join between elements (the initial QQI request) and views by using the ID's
Your idea is correct. You should be able to filter out the right parameters by performing an inner join on "Get (recursive) view relations", where you want to link the Element ID of your elements request with the Child ID of the View relations. You can then narrow down that result by applying a filter on the View ID column.
Note: there is an open issue where the "equals" will not work for IDs, but you can work around this by applying a regex ^my-view-id$.
You could also opt to link the filter to a dropdown feed that contains the views, so that you can filter the table based on a dropdown selection, without going into edit mode.
Thanks to you two, I succeeded
before asking the question, I was unable to get the “element ID”
I was using the contains filter, and now It’s OK with the regex and the example of Jens finalized the understanding