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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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