I have a Splunk Dashboard table with data. This is the JSON below: {
"type": "splunk.table",
"dataSources": {
"primary": "ds_zn4Nlcdc"
},
"title": "Some title",
"options": {
"columnFormat": {
"name": {
"width": 109
},
"team": {
"width": 60
}
},
"headerVisibility": "fixed"
},
"description": "Some description.",
"eventHandlers": [
{
"type": "drilldown.customUrl",
"options": {
"url": "$row.url.value$",
"newTab": true
}
}
],
"context": {},
"containerOptions": {},
"showProgressBar": false,
"showLastUpdated": false
} I have Event Handlers to reroute to the correct URL when drilling down. BUT the hyperlink is applied to the whole row. I want the hyperlink to be applied to only a specific column so I can have multiple hyperlinks for one row. At the moment, I can click any value on the row and I will be routed to $row.url.value$ but I want to click on a specific column and then be routed to that hyperlink specific to that column
... View more