<?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: How to adjust table alignment in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-adjust-table-alignment/m-p/316060#M94605</link>
    <description>&lt;P&gt;need help on this, provided info is not helping. Thanks &lt;/P&gt;</description>
    <pubDate>Fri, 07 Apr 2017 20:24:21 GMT</pubDate>
    <dc:creator>x05311</dc:creator>
    <dc:date>2017-04-07T20:24:21Z</dc:date>
    <item>
      <title>How to adjust table alignment</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-adjust-table-alignment/m-p/316057#M94602</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Can some one pls advice how i can do alignment my table display, in the snap shot column &amp;amp;quot;1&amp;amp;quot; has error code is not displaying in single line -Actual results. I&amp;amp;#39;m expecting display in single line - Green color   "&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/2732iC9DEEEB2FF61D2E8/image-size/large?v=v2&amp;amp;px=999" role="button" title="Can some one pls advice how i can do alignment my table display, in the snap shot column &amp;amp;quot;1&amp;amp;quot; has error code is not displaying in single line -Actual results. I&amp;amp;#39;m expecting display in single line - Green color   " alt="Can some one pls advice how i can do alignment my table display, in the snap shot column &amp;amp;quot;1&amp;amp;quot; has error code is not displaying in single line -Actual results. I&amp;amp;#39;m expecting display in single line - Green color   " /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 18:53:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-adjust-table-alignment/m-p/316057#M94602</guid>
      <dc:creator>x05311</dc:creator>
      <dc:date>2017-04-07T18:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to adjust table alignment</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-adjust-table-alignment/m-p/316058#M94603</link>
      <description>&lt;P&gt;Can some one pls advice how i can do alignment on my table display, in the snap shot column "1" has error code is not displaying in single line -Actual results. I'm expecting display in single line - Green color &lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 18:56:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-adjust-table-alignment/m-p/316058#M94603</guid>
      <dc:creator>x05311</dc:creator>
      <dc:date>2017-04-07T18:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to adjust table alignment</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-adjust-table-alignment/m-p/316059#M94604</link>
      <description>&lt;P&gt;Haven't tested it myself, but try specifying the list.wrap or table.wrap options as &lt;A href="http://docs.splunk.com/Documentation/SplunkCloud/6.5.1612/Viz/PanelreferenceforSimplifiedXML"&gt;documented here&lt;/A&gt;; set it to false.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 19:40:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-adjust-table-alignment/m-p/316059#M94604</guid>
      <dc:creator>s2_splunk</dc:creator>
      <dc:date>2017-04-07T19:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to adjust table alignment</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-adjust-table-alignment/m-p/316060#M94605</link>
      <description>&lt;P&gt;need help on this, provided info is not helping. Thanks &lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 20:24:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-adjust-table-alignment/m-p/316060#M94605</guid>
      <dc:creator>x05311</dc:creator>
      <dc:date>2017-04-07T20:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to adjust table alignment</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-adjust-table-alignment/m-p/316061#M94606</link>
      <description>&lt;P&gt;(To test this) You need to update the XML source code (On top right corner of dashboard, Edit -&amp;gt; Edit Source) of the dashboard to include those options OR update the Panel Visualization element (Edit -&amp;gt; Edit Panel, go to the panel and right most brush type icon) to not do the wrap. Find the &lt;CODE&gt;&amp;lt;table&amp;gt;&lt;/CODE&gt; element and add options like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;...some code....
 &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;..some title...&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;
      ......
          &amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;....&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;....&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;false&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 07 Apr 2017 20:55:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-adjust-table-alignment/m-p/316061#M94606</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-04-07T20:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to adjust table alignment</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-adjust-table-alignment/m-p/316062#M94607</link>
      <description>&lt;P&gt;Thanks for your response, to meet my requirement column 1  with wrap =false ; column 2 wrap = true ; column 3 wrap = true.;  else to see count i need to move my courser to right most.&lt;/P&gt;

&lt;P&gt;example: three fields like below &lt;BR /&gt;
errorCode     error Desc         count&lt;/P&gt;

&lt;P&gt;GEN-ERR-0023    GEN-ERR-0023 Initially, in data source type(s) '', the function 'providerQuery' is not supported in 'ReporterModeProvider'. After decomposition, the function 'ces_currentmeasure' is not supported in 'RelationalQueryProvider'.GEN-ERR-0009 Data source type(s) '' - Function 'rxxxxx is not supported in 'NoDataModeProvider'.GEN-ERR-0009 Data source type(s) 'bb' - Function 'xxxxxis not supported in 'OlapQueryProvider'.GEN-ERR-0019 Data source type(s) 'PC' - Function in 'NoDataModeProvider'.GEN-ERR-0009 Data source type(s) 'bb' - Function 'xxxxxis not Function 'realDataMode' is not supported in 'NoDataModeProvider'.GEN-ERR-0009 Data source type(s) '' - in 'NoDataModeProvider'.GEN-ERR-0009 Data source type(s) 'bb' - Function 'xxxxxis not type(s) '' - Function 'oneDimension' is not supported in 'CubeBuildProvider'.GEN-ERR-0009 Data source in 'NoDataModeProvider'.GEN-ERR-0009 Data source type(s) 'bb' - Function 'xxxxx'.                     8&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 21:06:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-adjust-table-alignment/m-p/316062#M94607</guid>
      <dc:creator>x05311</dc:creator>
      <dc:date>2017-04-07T21:06:23Z</dc:date>
    </item>
  </channel>
</rss>

