Dashboards & Visualizations

Can you assign input text value depending on input checkbox in a dashboard?

praspai
Path Finder

Hi,

We want to assign a value to input text box depending on checkbox values selected in the dashboard. User should also able to update the values in text box.

alt text

We want user able to update the search condition, depending on attributes selected. Search results will be displayed depending on the search condition.

Is it possible with splunk dashbord ?

0 Karma
1 Solution

renjith_nair
Legend

@praspai,

Try

<form>
  <fieldset submitButton="false" autoRun="false">
    <input type="checkbox" token="attribute">
      <label>Attribute</label>
      <choice value="Receiver=&quot; &quot;">Receiver</choice>
      <choice value="Status=&quot; &quot;">Status</choice>
      <choice value="UserStatus=&quot; &quot;">UserStatus</choice>
      <choice value="*">All</choice>
      <delimiter> AND </delimiter>
      <change>
        <set token="srcFilter">$attribute$</set>
      </change>
    </input>
    <input type="text" token="searchFilter" searchWhenChanged="true">
      <label>Search</label>
      <default>$srcFilter$</default>
      <initialValue>$srcFilter$</initialValue>
    </input>
  </fieldset>
  <row>
    <panel>
      <html>
      <h1>This is my search filter from text box $searchFilter$</h1>
    </html>
    </panel>
  </row>
</form>
Happy Splunking!

View solution in original post

0 Karma

renjith_nair
Legend

@praspai,

Try

<form>
  <fieldset submitButton="false" autoRun="false">
    <input type="checkbox" token="attribute">
      <label>Attribute</label>
      <choice value="Receiver=&quot; &quot;">Receiver</choice>
      <choice value="Status=&quot; &quot;">Status</choice>
      <choice value="UserStatus=&quot; &quot;">UserStatus</choice>
      <choice value="*">All</choice>
      <delimiter> AND </delimiter>
      <change>
        <set token="srcFilter">$attribute$</set>
      </change>
    </input>
    <input type="text" token="searchFilter" searchWhenChanged="true">
      <label>Search</label>
      <default>$srcFilter$</default>
      <initialValue>$srcFilter$</initialValue>
    </input>
  </fieldset>
  <row>
    <panel>
      <html>
      <h1>This is my search filter from text box $searchFilter$</h1>
    </html>
    </panel>
  </row>
</form>
Happy Splunking!
0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.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 ...