Situation:
I have a panel. The panel creates a token for me from a field I extract from the search. In the same panel I create a URL that enables me to "drilldown".
Open Tickets
search...
| table "ticket_num", "Creation Date", "other_field", "other_field"
$field3.earliest$
$field3.latest$
$result.ticket_num$
5
none
row
true
<eval>replace($row.url$, "http://", ""</eval>
<link target="_blank">
<![CDATA[ https://other.tool/$ticket_num$ ]]>
</link>
</drilldown>
</table>
</panel>
My table appears to work nicely where each row represents unique open tickets.
Problem:
All rows, upon clicking, "drilldown" only to the first row's "ticket_num". Which I think makes sense.
Question:
Can you pleas share if its possible with ES simple XML and without any other add-on to modify the panel so that, upon clicking a row, I "drilldown" to the respective row's unique "ticket_num"?
... View more