FooterView

The Footer view

Description

The Footer view displays the Splunk footer.

Documentation

Library path

Properties

Name

Default value

Description

id Required. The unique ID for this control.

Methods

Name

Description

renderDraws the control to the screen. Called only when you create the control manually in JavaScript.

Example (Django tag)

{% footer id="example-footer" %}

Example (JavaScript)

<script>
    var deps = [
        "splunkjs/ready!",
        "splunkjs/mvc/footerview"
    ];
    require(deps, function(mvc) {
        var FooterView = require("splunkjs/mvc/footerview");

        // Instantiate components
        new FooterView({
            id: "example-footer",
            el: $("#myfooterview")
        }).render();

    });
</script>