Splunk Dev

How to redirect another template in Django (SplunkJS) ?

ryuch2002
Explorer

splunk version : 6.2.2

some code :
-- content area ---

<div class="panel-body" >
 {% chart id="chart_avgResponseTime" managerid="avgResponseTime" type="line" drilldown="all" drilldownRedirect=false %}
</div>

--script code --

<script>
        var deps = [
            "splunkjs/ready!"
        ];
        require(deps, function(mvc) {
            var chart_avgResponseTime = splunkjs.mvc.Components.getInstance("chart_avgResponseTime");
            chart_avgResponseTime.on("click:chart", function(e) {

            ******* i want to redirect another template(or page) ******            

});         
</script>
0 Karma
1 Solution

vganjare
Builder

Try following code:

 e.preventDefault();
window.location.href="{% url '<APP_NAME>:<TEMPLATE_NAME>' %}?param1=value1&param2=Value2

APP_NAME : the given app name within which the template is residing.
TEMPLATE_NAME: The template name given in urls.py.

Thanks!!

View solution in original post

0 Karma

vganjare
Builder

Try following code:

 e.preventDefault();
window.location.href="{% url '<APP_NAME>:<TEMPLATE_NAME>' %}?param1=value1&param2=Value2

APP_NAME : the given app name within which the template is residing.
TEMPLATE_NAME: The template name given in urls.py.

Thanks!!

0 Karma

ryuch2002
Explorer

Thank you for answer!!! i solved it.

0 Karma
Get Updates on the Splunk Community!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...