Dashboards & Visualizations

how to create inpage drilldown in Django framework

mvaradarajam
Path Finder

Hi,
how to create inpage drilldown in django framework.can u plz help me...........

Tags (3)
0 Karma

apruneda_splunk
Splunk Employee
Splunk Employee

In Django, you can set the drilldown and drilldownRedirect properties, but you need to use JavaScript to customize the behavior.
The drilldown property can take different values depending on which view you're working with. Example:

{# Enable drilldown, enable redirect #}
{% splunkmap 
    id="example-map" managerid="map-search" 
    drilldown=True 
    drilldownRedirect=True %}

{# Enable drilldown for row clicks, disable redirect #}
{% table 
    id="example-table" managerid="table-search" 
    drilldown="row" 
    drilldownRedirect=False %}

See the Component Reference for details about the drilldown and drilldownRedirect properties for Chart, Table, EventsViewer, and SplunkMap.

Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...