<?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: Table Module &amp;quot;per row&amp;quot;checbox in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Table-Module-quot-per-row-quot-checbox/m-p/284530#M33823</link>
    <description>&lt;P&gt;Thank you! For some reason when I was playing with this in the editor earlier I could not get it to work properly. By taking the time to hand code using the documentation as my guide I was able to get it all work properly.&lt;/P&gt;</description>
    <pubDate>Wed, 06 Apr 2016 16:41:33 GMT</pubDate>
    <dc:creator>nkpiquette</dc:creator>
    <dc:date>2016-04-06T16:41:33Z</dc:date>
    <item>
      <title>Table Module "per row"checbox</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Table-Module-quot-per-row-quot-checbox/m-p/284528#M33821</link>
      <description>&lt;P&gt;Hello everyone,&lt;BR /&gt;
    I have reached the point where I keep hitting dead ends and I turn to the community for help! I am using sideview utils 3.3.11 and advanced xml to try and put a check-box in each table line so that the user can click the checkbox, and the onValue gets stored for later use. I am modeling my dashboard after the example: &lt;A href="https://answers.splunk.com/answers/168267/table-module-per-row-checkbox-module-downstreams.html"&gt;https://answers.splunk.com/answers/168267/table-module-per-row-checkbox-module-downstreams.html&lt;/A&gt; Titled: Table Module "per row" checkbox module downstreams (posting the title since I do not have enough Karama for links).&lt;/P&gt;

&lt;P&gt;Here is what the code looks like so far:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;view autoCancelInterval="90" isVisible="true" objectMode="SimpleDashboard" onunloadCancelJobs="true" refresh="-1" template="dashboard.html"&amp;gt;
  &amp;lt;label&amp;gt;test&amp;lt;/label&amp;gt;

  &amp;lt;module name="AccountBar" layoutPanel="appHeader" /&amp;gt;

  &amp;lt;module name="AppBar" layoutPanel="navigationHeader" /&amp;gt;

  &amp;lt;module name="Message" layoutPanel="messaging"&amp;gt;
    &amp;lt;param name="filter"&amp;gt;*&amp;lt;/param&amp;gt;
    &amp;lt;param name="maxSize"&amp;gt;1&amp;lt;/param&amp;gt;
    &amp;lt;param name="clearOnJobDispatch"&amp;gt;False&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;

  &amp;lt;module name="DashboardTitleBar" layoutPanel="viewHeader" /&amp;gt;

  &amp;lt;module name="Message" layoutPanel="navigationHeader"&amp;gt;
    &amp;lt;param name="filter"&amp;gt;splunk.search.job&amp;lt;/param&amp;gt;
    &amp;lt;param name="maxSize"&amp;gt;1&amp;lt;/param&amp;gt;
    &amp;lt;param name="clearOnJobDispatch"&amp;gt;True&amp;lt;/param&amp;gt;
    &amp;lt;param name="level"&amp;gt;warn&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;

  &amp;lt;module name="SideviewUtils" layoutPanel="appHeader" /&amp;gt;

  &amp;lt;module name="Search" layoutPanel="panel_row1_col1" autoRun="True"&amp;gt;
    &amp;lt;param name="latest"&amp;gt;now&amp;lt;/param&amp;gt;
    &amp;lt;param name="earliest"&amp;gt;-24h@h&amp;lt;/param&amp;gt;
    &amp;lt;param name="search"&amp;gt;&amp;lt;![CDATA[
index=_internal | head 1000 | top sourcetype | eval tablevalue=sourcetype+"   "+count]]&amp;gt;&amp;lt;/param&amp;gt;

    &amp;lt;module name="Pager"&amp;gt;

      &amp;lt;module name="Table"&amp;gt;

        &amp;lt;module name="Checkbox"&amp;gt;
          &amp;lt;param name="name"&amp;gt;row_selection&amp;lt;/param&amp;gt;
          &amp;lt;param name="name"&amp;gt;row_selection&amp;lt;/param&amp;gt;
          &amp;lt;param name="onValue"&amp;gt;$row.field.sourcetype$&amp;lt;/param&amp;gt;
        &amp;lt;/module&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;Any help or nudges in the right direction would be appreciated!&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2016 14:48:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Table-Module-quot-per-row-quot-checbox/m-p/284528#M33821</guid>
      <dc:creator>nkpiquette</dc:creator>
      <dc:date>2016-04-06T14:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: Table Module "per row"checbox</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Table-Module-quot-per-row-quot-checbox/m-p/284529#M33822</link>
      <description>&lt;P&gt;You should circle back to the official docs. &lt;BR /&gt;
 Look under "Module Documentation &amp;gt; The Table Module &amp;gt; Table - embedding examples" &lt;/P&gt;

&lt;P&gt;Although along the way you might also want to spend some time reading through the other 4 pages of docs and examples about the Table's other features. &lt;/P&gt;

&lt;P&gt;In short, you want to "table-embed" the Checkbox instead of just placing it downstream.    By placing it downstream you're wiring up an inline drilldown - when the user clicks on a (now-clickable) table row,  a lone Checkbox will show, and that's not what you want. &lt;/P&gt;

&lt;P&gt;the even shorter version,  is that you should &lt;BR /&gt;
a) put some extra field into your search like &lt;CODE&gt;| eval actions=""&lt;/CODE&gt;&lt;BR /&gt;
b) put an attribute on your &lt;CODE&gt;&amp;lt;module name="Checkbox"&amp;gt; of&lt;/CODE&gt;group="row.field.actions" &lt;/P&gt;

&lt;P&gt;But...  definitely read through the actual Table-embedding docs and the working examples it has. &lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2016 16:14:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Table-Module-quot-per-row-quot-checbox/m-p/284529#M33822</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2016-04-06T16:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: Table Module "per row"checbox</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Table-Module-quot-per-row-quot-checbox/m-p/284530#M33823</link>
      <description>&lt;P&gt;Thank you! For some reason when I was playing with this in the editor earlier I could not get it to work properly. By taking the time to hand code using the documentation as my guide I was able to get it all work properly.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2016 16:41:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Table-Module-quot-per-row-quot-checbox/m-p/284530#M33823</guid>
      <dc:creator>nkpiquette</dc:creator>
      <dc:date>2016-04-06T16:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Table Module "per row"checbox</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Table-Module-quot-per-row-quot-checbox/m-p/284531#M33824</link>
      <description>&lt;P&gt;Hi nkpiquette - its great. can you please share your sample source code.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2017 18:02:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Table-Module-quot-per-row-quot-checbox/m-p/284531#M33824</guid>
      <dc:creator>yogushelly</dc:creator>
      <dc:date>2017-03-01T18:02:20Z</dc:date>
    </item>
  </channel>
</rss>

