<?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: No option to Export CSV results from dashboard UI app view???????? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51789#M2635</link>
    <description>&lt;P&gt;You could save the search as a "Report" rather than a "Dashboard". &lt;BR /&gt;
Report gives option for Export as CSV,XML, PDF etc..&lt;/P&gt;</description>
    <pubDate>Mon, 17 Mar 2014 17:00:50 GMT</pubDate>
    <dc:creator>koshyk</dc:creator>
    <dc:date>2014-03-17T17:00:50Z</dc:date>
    <item>
      <title>No option to Export CSV results from dashboard UI app view????????</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51785#M2631</link>
      <description>&lt;P&gt;I have created a simple UI dashboard app, which has a simple form based search and is locked down so the user cannot drill down to results and therefore get open access to the search bar.&lt;/P&gt;

&lt;P&gt;However i would like them to be able to export the table of results to a CSV.&lt;/P&gt;

&lt;P&gt;Unfortunately the Actions menu only has Print and a greyed out PDF option as the PDF server is not configured. some answers post seem to suggest this is not pssible? can someone confirm?&lt;/P&gt;

&lt;P&gt;I am using Advanced XML, cann i not add in a exportCSV module somehow?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2012 15:59:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51785#M2631</guid>
      <dc:creator>r999</dc:creator>
      <dc:date>2012-09-05T15:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: No option to Export CSV results from dashboard UI app view????????</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51786#M2632</link>
      <description>&lt;P&gt;1) There's an app called Splunk for Excel Export  that gives you a module called ExcelExport. &lt;/P&gt;

&lt;P&gt;It overdelivers in this case, because it sends headers that office recognizes such that excel will itself open directly, and the data will stream down into Microsoft Excel directly (oooh).  &lt;/P&gt;

&lt;P&gt;2) If you're just after a simpler CSV export, I think in Core splunk you have to use the TitleBar module, and you have to make sure to place that TitleBar module into a place in the hierarchy where it has access to the given dispatched search.   ie place it as a sibling of your JobProgressIndicator or FlashChart.  At any rate no higher than the deepest module "that needs a search to be running".   And it'll bring along with it the pagetitle and the actions menu and all of the options in the actions menu, less whatever you can whack away or grey out by setting some params to false. &lt;/P&gt;

&lt;P&gt;3) Or you can use Sideview Utils, which has a module called SearchControls.  You have to be just as mindful of placement in the XML hierarchy as with TitleBar. However with SearchControls you (the view creator) can choose from lots of buttons and menus.  Basically it's the stuff that the JobStatus module can do,  plus export.     And you can control exactly what buttons and menus SearchControls has, and in what order. &lt;/P&gt;

&lt;P&gt;So if you just want it to put an export button on the page you would do &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="SearchControls"&amp;gt;
  &amp;lt;param name="sections"&amp;gt;export&amp;lt;/param&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you go with #3, make sure to get Sideview Utils from the sideview site and not from Splunkbase. The version on Splunkbase is really old and among many other differences, it doesn't have the SearchControls module.&lt;/P&gt;

&lt;P&gt;&lt;A href="http://sideviewapps.com/apps/sideview-utils/"&gt;http://sideviewapps.com/apps/sideview-utils/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;UPDATE -- as jonuwz pointed out, there is a module called Export in the core Splunk UI and you can use that to give you a simple export button that will bring up the little export controls when clicked.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2012 16:08:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51786#M2632</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-09-05T16:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: No option to Export CSV results from dashboard UI app view????????</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51787#M2633</link>
      <description>&lt;P&gt;Just stick the export module within the search with your simpleresults table.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="HiddenSearch" layoutPanel="panel_row1_col1" autoRun="True"&amp;gt;
  &amp;lt;param name="search"&amp;gt;* | head 10 | table sourcetype source _time&amp;lt;/param&amp;gt;
  &amp;lt;module name="Export"&amp;gt;
    &amp;lt;param name="exportType"&amp;gt;result&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;
  &amp;lt;module name="SimpleResultsTable"/&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Edited to make SRT + Export siblings as suggested by Sideview&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 21:35:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51787#M2633</guid>
      <dc:creator>jonuwz</dc:creator>
      <dc:date>2012-09-06T21:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: No option to Export CSV results from dashboard UI app view????????</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51788#M2634</link>
      <description>&lt;P&gt;I forgot they added an Export module.  I'll update my answer too.   Btw there's no need to have the SimpleResultsTable nested inside like that.  Just have the Export and SimpleResultsTable be siblings at the same level.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2012 21:49:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51788#M2634</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2012-09-06T21:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: No option to Export CSV results from dashboard UI app view????????</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51789#M2635</link>
      <description>&lt;P&gt;You could save the search as a "Report" rather than a "Dashboard". &lt;BR /&gt;
Report gives option for Export as CSV,XML, PDF etc..&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2014 17:00:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51789#M2635</guid>
      <dc:creator>koshyk</dc:creator>
      <dc:date>2014-03-17T17:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: No option to Export CSV results from dashboard UI app view????????</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51790#M2636</link>
      <description>&lt;P&gt;what do you mean by stick the export module within the search?  Just paste it in after your search after a pipe?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2016 15:07:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51790#M2636</guid>
      <dc:creator>mark_chuman</dc:creator>
      <dc:date>2016-01-29T15:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: No option to Export CSV results from dashboard UI app view????????</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51791#M2637</link>
      <description>&lt;P&gt;where i need to add this module exactly in the xml, because i getting warnings&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 01:19:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51791#M2637</guid>
      <dc:creator>kranthimutyala</dc:creator>
      <dc:date>2019-11-14T01:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: No option to Export CSV results from dashboard UI app view????????</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51792#M2638</link>
      <description>&lt;P&gt;@kranthimutyala you are referring to a post from 7 years ago. Advanced XML stands deprecated from several releases 6.4 or even prior. Please create a new question with your issue for the community to assist you better.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 01:24:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/No-option-to-Export-CSV-results-from-dashboard-UI-app-view/m-p/51792#M2638</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-11-14T01:24:26Z</dc:date>
    </item>
  </channel>
</rss>

