<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Why does it seem like a checkboxes module does not dispatch my search? in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-does-it-seem-like-a-checkboxes-module-does-not-dispatch-my/m-p/197936#M20558</link>
    <description>&lt;P&gt;Indeed it is. Don't forget to mark this as solved.&lt;/P&gt;</description>
    <pubDate>Sun, 23 Mar 2014 21:47:56 GMT</pubDate>
    <dc:creator>martin_mueller</dc:creator>
    <dc:date>2014-03-23T21:47:56Z</dc:date>
    <item>
      <title>Why does it seem like a checkboxes module does not dispatch my search?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-does-it-seem-like-a-checkboxes-module-does-not-dispatch-my/m-p/197933#M20555</link>
      <description>&lt;P&gt;This view only returns "Loading..." &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;view template="dashboard.html" isVisible="true"&amp;gt;
  &amp;lt;label&amp;gt;SERVER SELECTOR&amp;lt;/label&amp;gt;

  &amp;lt;module name="AccountBar" layoutPanel="appHeader" /&amp;gt;
  &amp;lt;module name="AppBar" layoutPanel="appHeader" /&amp;gt;
  &amp;lt;module name="SideviewUtils" layoutPanel="viewHeader" /&amp;gt;

    &amp;lt;module name="Search" layoutPanel="panel_row1_col1"&amp;gt;
      &amp;lt;param name="search"&amp;gt;host=* | head 10000 | stats dc(host) by host&amp;lt;/param&amp;gt;

      &amp;lt;module name="Checkboxes"&amp;gt;
        &amp;lt;param name="labelField"&amp;gt;host&amp;lt;/param&amp;gt;
        &amp;lt;param name="name"&amp;gt;servers&amp;lt;/param&amp;gt;
        &amp;lt;param name="valueField"&amp;gt;host&amp;lt;/param&amp;gt;
        &amp;lt;param name="staticCheckboxes"/&amp;gt;
      &amp;lt;/module&amp;gt;

   &amp;lt;/module&amp;gt;
&amp;lt;/view&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;While this view (with the button) returns what I expect. (after the button is pressed obviously) &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;view template="dashboard.html" isVisible="true"&amp;gt;
  &amp;lt;label&amp;gt;SERVER SELECTOR&amp;lt;/label&amp;gt;

  &amp;lt;module name="AccountBar" layoutPanel="appHeader" /&amp;gt;
  &amp;lt;module name="AppBar" layoutPanel="appHeader" /&amp;gt;
  &amp;lt;module name="SideviewUtils" layoutPanel="viewHeader" /&amp;gt;

   &amp;lt;module name="Button" layoutPanel="panel_row1_col1"&amp;gt;
   &amp;lt;param name="label"&amp;gt;GO!&amp;lt;/param&amp;gt;

   &amp;lt;module name="Search" &amp;gt;
      &amp;lt;param name="search"&amp;gt;host=* | head 10000 | stats dc(host) by host&amp;lt;/param&amp;gt;

      &amp;lt;module name="Checkboxes"&amp;gt;
        &amp;lt;param name="labelField"&amp;gt;host&amp;lt;/param&amp;gt;
        &amp;lt;param name="name"&amp;gt;servers&amp;lt;/param&amp;gt;
        &amp;lt;param name="valueField"&amp;gt;host&amp;lt;/param&amp;gt;
        &amp;lt;param name="staticCheckboxes"/&amp;gt;
      &amp;lt;/module&amp;gt;

   &amp;lt;/module&amp;gt;
&amp;lt;/module&amp;gt;
&amp;lt;/view&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;How do I write this so that the search is dispatched on page load without a button press?&lt;/P&gt;</description>
      <pubDate>Sat, 22 Mar 2014 14:41:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-does-it-seem-like-a-checkboxes-module-does-not-dispatch-my/m-p/197933#M20555</guid>
      <dc:creator>neiljpeterson</dc:creator>
      <dc:date>2014-03-22T14:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Why does it seem like a checkboxes module does not dispatch my search?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-does-it-seem-like-a-checkboxes-module-does-not-dispatch-my/m-p/197934#M20556</link>
      <description>&lt;P&gt;Consider setting autoRun="True" on your search.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Mar 2014 12:07:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-does-it-seem-like-a-checkboxes-module-does-not-dispatch-my/m-p/197934#M20556</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-03-23T12:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Why does it seem like a checkboxes module does not dispatch my search?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-does-it-seem-like-a-checkboxes-module-does-not-dispatch-my/m-p/197935#M20557</link>
      <description>&lt;P&gt;Perfect! It is a shame I somehow missed that in reading over (and over again) the sideview docs. Its so obvious once you know.&lt;/P&gt;

&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Sun, 23 Mar 2014 16:07:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-does-it-seem-like-a-checkboxes-module-does-not-dispatch-my/m-p/197935#M20557</guid>
      <dc:creator>neiljpeterson</dc:creator>
      <dc:date>2014-03-23T16:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Why does it seem like a checkboxes module does not dispatch my search?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-does-it-seem-like-a-checkboxes-module-does-not-dispatch-my/m-p/197936#M20558</link>
      <description>&lt;P&gt;Indeed it is. Don't forget to mark this as solved.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Mar 2014 21:47:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-does-it-seem-like-a-checkboxes-module-does-not-dispatch-my/m-p/197936#M20558</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-03-23T21:47:56Z</dc:date>
    </item>
  </channel>
</rss>

