Hi
I believe you need to move to JavaScript to control that behaviour.
You can create a variable and then add each clicked value into that.
var drill = []
table.on("click", function(e) {
drill.push(e.data['row.value']);
}
In the end you;ll have the three values and you just need the other search you use to be reloaded using the search manager of that other panel (let's say its called panel_search)
panel_search.startSearch();
... View more
Thanks for the replies.
After further review my Field3 was the cause of my lack of results.
The below where command worked.
| where NOT CompletedConnections="0"
... View more