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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...