SearchControlsView

The SearchControls view

Description

The SearchControls view manages the controls for a search.

Library path

Properties

Name

Default value

Description

id Required. The unique ID for this control.
manageridnullThe ID of the search manager to bind this view to.
settingsThe properties of the view. See the methods below to get and set values.

Methods

Name

Description

renderDraws the view to the screen. Called only when you create the view manually.
settings.get( property )Returns the value of property for the current component.
settings.set( propertyvalue )Sets the value of property to the specified value for the current component.

Example

require([
    "splunkjs/mvc/searchcontrolsview",
    "splunkjs/mvc/simplexml/ready!"
], function(SearchControlsView) {

    // Instantiate components
    new SearchControlsView({
        id: "example-searchcontrols",
        managerid: "example-search",
        el: $("#mysearchcontrolsview")
    }).render();

});