<?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: Need help to encircle the table row based on the selected date in drilldown instead of cell highlight in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Need-help-to-encircle-the-table-row-based-on-the-selected-date/m-p/505745#M141397</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/65124"&gt;@spkriyaz&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use same approach as I mentioned in below link.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.splunk.com/t5/Dashboards-Visualizations/Need-help-in-applying-checkbox-in-splunk-table-and-saving-the-on/td-p/503603" target="_blank"&gt;https://community.splunk.com/t5/Dashboards-Visualizations/Need-help-in-applying-checkbox-in-splunk-table-and-saving-the-on/td-p/503603&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In above example just do below changes.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1) Add below class in CSS.&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="css"&gt;.table_raw {
  border: solid #FF0000  !important; 
  border-width: 2px 2px 2px 2px  !important; 
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2) In JS, comment below line.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// $(this).parents('tr').addClass(this.className);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;And add this block.&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;if(this.className === "range-cell range-not-acked") {
   $(this).parents('tr').addClass("table_raw");	
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will highlight row which is not acknowledged.&lt;/P&gt;&lt;P&gt;In your case, just add class in any cell of your required row and use in above if condition for matching. It will highlight that row.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try and let me know if any issue. In case, you are not able to do then share your sample XML, JS and CSS, so I can help on that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;Kamlesh Vaghela&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jun 2020 13:48:49 GMT</pubDate>
    <dc:creator>kamlesh_vaghela</dc:creator>
    <dc:date>2020-06-23T13:48:49Z</dc:date>
    <item>
      <title>Need help to encircle the table row based on the selected date in drilldown instead of cell highlight</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Need-help-to-encircle-the-table-row-based-on-the-selected-date/m-p/505518#M141272</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am looking for solution to encircle the entire row with a red line instead of highlighting the table row. I have a dropdown and three panels in a dashboard. My dropdown will have the posting date like Today, Yesterday etc. in a format of YYYYMMDD. If I chose the value from the dropdown my first panel is the table which has the summary details for all the posting dates like below.&lt;/P&gt;&lt;P&gt;According to my current solution if I chose the posting date (&lt;STRONG&gt;Picture 1&lt;/STRONG&gt;), in below example I chose July 21st as posting date so it highlights the value in Red (&lt;STRONG&gt;Picture 2&lt;/STRONG&gt;) which is my first panel. Instead of highlighting the specific cell as RED I want the entire row of the chosen posting date to be encircled by a RED rectangle line. Like shown in (&lt;STRONG&gt;Picture 3&lt;/STRONG&gt;) below.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Picture 1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="posting.PNG" style="width: 187px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/9285iFCAD71BF3655F1C3/image-size/large?v=v2&amp;amp;px=999" role="button" title="posting.PNG" alt="posting.PNG" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Picture 2:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="summary.PNG" style="width: 628px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/9283iA3F30128DA8EFF33/image-size/large?v=v2&amp;amp;px=999" role="button" title="summary.PNG" alt="summary.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Picture 3:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="summary2.PNG" style="width: 642px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/9284i8FDE4AEDCFA512EF/image-size/large?v=v2&amp;amp;px=999" role="button" title="summary2.PNG" alt="summary2.PNG" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Likewise, my second panel&amp;lt;&lt;STRONG&gt;Picture 4&lt;/STRONG&gt;&amp;gt; populates along with the first panel, In the second table panel I have a columns like process, process_end_date job, job_description, sla_time. If I click on any value of the process column in panel 2, the third panel populates and currently i have the solution of highlighting the cell alone which can be seen in&amp;nbsp; &amp;lt;&lt;STRONG&gt;Picture 5&lt;/STRONG&gt;&amp;gt;. Instead, it should encircle the entire row in third panel&amp;nbsp;in RED like &amp;lt;&lt;STRONG&gt;picture 3&lt;/STRONG&gt;&amp;gt; which has the matching process name for the selected posting date from drop-down.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Picture 4:&lt;/STRONG&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="detail.PNG" style="width: 943px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/9286i0D5CEFFDE55355A1/image-size/large?v=v2&amp;amp;px=999" role="button" title="detail.PNG" alt="detail.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Picture 5:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="detail1.PNG" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/9287i4409E47438FC9BCF/image-size/large?v=v2&amp;amp;px=999" role="button" title="detail1.PNG" alt="detail1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/127939"&gt;@kamlesh_vaghela&lt;/a&gt;&amp;nbsp; will you be able to help here?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 14:55:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Need-help-to-encircle-the-table-row-based-on-the-selected-date/m-p/505518#M141272</guid>
      <dc:creator>spkriyaz</dc:creator>
      <dc:date>2020-06-22T14:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: Need help to encircle the table row based on the selected date in drilldown instead of cell highlight</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Need-help-to-encircle-the-table-row-based-on-the-selected-date/m-p/505745#M141397</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/65124"&gt;@spkriyaz&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use same approach as I mentioned in below link.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.splunk.com/t5/Dashboards-Visualizations/Need-help-in-applying-checkbox-in-splunk-table-and-saving-the-on/td-p/503603" target="_blank"&gt;https://community.splunk.com/t5/Dashboards-Visualizations/Need-help-in-applying-checkbox-in-splunk-table-and-saving-the-on/td-p/503603&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In above example just do below changes.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1) Add below class in CSS.&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="css"&gt;.table_raw {
  border: solid #FF0000  !important; 
  border-width: 2px 2px 2px 2px  !important; 
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2) In JS, comment below line.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// $(this).parents('tr').addClass(this.className);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;And add this block.&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;if(this.className === "range-cell range-not-acked") {
   $(this).parents('tr').addClass("table_raw");	
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will highlight row which is not acknowledged.&lt;/P&gt;&lt;P&gt;In your case, just add class in any cell of your required row and use in above if condition for matching. It will highlight that row.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try and let me know if any issue. In case, you are not able to do then share your sample XML, JS and CSS, so I can help on that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;Kamlesh Vaghela&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2020 13:48:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Need-help-to-encircle-the-table-row-based-on-the-selected-date/m-p/505745#M141397</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2020-06-23T13:48:49Z</dc:date>
    </item>
  </channel>
</rss>

