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!

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