<?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 higlight cell within html dashboards on splunk 7 ? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449168#M29543</link>
    <description>&lt;P&gt;i use your solution from the beginning  but the problem that the render function not loaded&lt;/P&gt;</description>
    <pubDate>Mon, 10 Sep 2018 16:15:21 GMT</pubDate>
    <dc:creator>sfatnass</dc:creator>
    <dc:date>2018-09-10T16:15:21Z</dc:date>
    <item>
      <title>how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449155#M29530</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;

&lt;P&gt;i upgraded the splunk version from 6.4 to 7&lt;BR /&gt;
i use a lot of html dashboards and i have some eventlistener "onlick" to highlight cells and rows.&lt;BR /&gt;
that's work perfectly with splunk 6.4 but not on version 7.&lt;/P&gt;

&lt;P&gt;why? how can i fix that ?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2018 09:22:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449155#M29530</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2018-09-05T09:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449156#M29531</link>
      <description>&lt;P&gt;@sfatnass will it be possible for you to share one of your onclick event handler?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2018 09:32:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449156#M29531</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-09-05T09:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449157#M29532</link>
      <description>&lt;P&gt;thx for your reply i investigate and i found the problem is not in the event handler but in event render&lt;/P&gt;

&lt;P&gt;if you run the dashboard : custom_table_row_highlighting&lt;BR /&gt;
from : &lt;A href="https://splunkbase.splunk.com/app/1603/" target="_blank"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;the render for highlight called by the js not work in splunk 7&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 21:11:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449157#M29532</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2020-09-29T21:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449158#M29533</link>
      <description>&lt;P&gt;Yeah, I had the same issue when I upgraded. Turns out they did something that affected the way onclick functions are accessed. My original onclick function was:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$('#submitButton').click(function (e) {
//snipped//
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Had to change it to the following to get it to work in 7:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$('#submitButton').on("click", function (e) {
//snipped//
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hopefully that helps you out.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2018 13:29:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449158#M29533</guid>
      <dc:creator>Justinboucher0</dc:creator>
      <dc:date>2018-09-05T13:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449159#M29534</link>
      <description>&lt;P&gt;&lt;A href="https://community.splunk.com/storage/temp/255923-table-row-highlighting-html.txt" target="_blank"&gt;this is my dashboard html&lt;/A&gt;&lt;BR /&gt;
in my dashboard i try to call a function within a loader &lt;A href="https://community.splunk.com/storage/temp/255924-load.txt" target="_blank"&gt;load.js&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;i edited the application : &lt;A href="https://splunkbase.splunk.com/app/1603/" target="_blank"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt;&lt;BR /&gt;
table_row_highlighting.js &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; if (value == 1) {
      $td.addClass('range-cell').addClass('range-elevated');
   }
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;to highlight 'active_hist_searches' when the value equal to 2.&lt;BR /&gt;
the highlight should work only if the handler "onclick" is done.&lt;/P&gt;

&lt;P&gt;but not work &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 21:11:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449159#M29534</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2020-09-29T21:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449160#M29535</link>
      <description>&lt;P&gt;that's what i'm using but the problem is not here. you can refer to my report below&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2018 15:44:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449160#M29535</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2018-09-05T15:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449161#M29536</link>
      <description>&lt;P&gt;I get a 403 when trying to access your dashboard html. But shouldn't the value be labeled cell.value?&lt;/P&gt;

&lt;P&gt;I edited this same code for an XML dashboard to use dynamic values. I'll post my code below and you can see if adding your click event handler will work:&lt;/P&gt;

&lt;P&gt;JS File:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;require([
     'underscore',
     'jquery',
     'splunkjs/mvc',
     'splunkjs/mvc/tableview',
     'splunkjs/mvc/simplexml/ready!'
 ], function(_, $, mvc, TableView) {

     var CustomRangeRenderer = TableView.BaseCellRenderer.extend({
         canRender: function(cell) {
             // Enable this custom cell renderer for 'Average Response Time SLA'
             return _(['Average Response Time SLA']).contains(cell.field);
         },
         render: function($td, cell) {
             // Add a class to the cell based on the returned value
             var strSLA = cell.value;
             if (strSLA!==undefined){
                 strSLA=strSLA.trim();
                 $td.addClass('range-cell').addClass("range-"+strSLA);
             }
             $td.text(strSLA).addClass('string');
         }
     });
     mvc.Components.get("response_time_highlight_cell").getVisualization(function(tableView){
         tableView.on("rendered", function() {
             console.log("Table Rendered");
             setTimeout(function(){
                 $("#response_time_highlight_cell tr").each(function() {
                     var strSLA=$(this).find("td:last").html();
                     if (strSLA!==undefined){
                         strSLA=strSLA.trim();
                         $(this).find("td:nth-child(4)").addClass("range-cell").addClass("range-"+strSLA);
                     }
                 });
             },100);
         });
     });
 });
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Search Panel:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Transaction Response by Objective and Threshold&amp;lt;/title&amp;gt;
      &amp;lt;table id="response_time_highlight_cell"&amp;gt;
        &amp;lt;search base="filteredSearch"&amp;gt;
          &amp;lt;query&amp;gt;| search service IN (
                        $service$ ) transaction_status IN ( $transaction_status$ ) transaction_name IN (
                        $transaction_name$ ) username IN ( $username$ ) workstation_name IN ( $workstation_name$)
                        transaction_mode IN ( $transaction_mode$ ) threshold IN ( $threshold$ )  | stats
                        count avg(response_time) AS response_time BY transaction_name objective threshold
                        | where threshold!=100
                        | eval threshold=round(threshold,2)
                        | eval objective=round(objective,2)
                        | eval response_time=round(response_time,2)
                        | fields transaction_name count response_time objective threshold
                        | eval "Average Response Time SLA"=case(response_time&amp;amp;gt;=threshold,"severe",
                        response_time&amp;amp;lt;threshold AND response_time&amp;amp;gt;=objective,"elevated",objective==100 AND
                        threshold==100,"info",true(),"low")
                        | rename response_time AS "Average Response Time (secs)" transaction_name AS "Transaction Name"
                        objective as Objective threshold as Threshold count as "Transaction Count"
                        | sort +transaction_name
                    &amp;lt;/query&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;20&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;true&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;EDIT: Forgot to add the search itself.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;NOTE&lt;/STRONG&gt; I renamed the table and script to response_time_* since I wanted to separate this one from another script that used table_highlight_cell.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 21:11:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449161#M29536</guid>
      <dc:creator>Justinboucher0</dc:creator>
      <dc:date>2020-09-29T21:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449162#M29537</link>
      <description>&lt;P&gt;thx for your reply i tryied your code.&lt;/P&gt;

&lt;P&gt;but the problem is the same, the range-cell added only if i switch the paginator &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;the message into console : table Renderer not show up directly&lt;BR /&gt;
so the function  tableView.on('rendered', function() { not called correctly&lt;/P&gt;

&lt;P&gt;splunk 7 make me crazy &lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2018 07:33:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449162#M29537</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2018-09-06T07:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449163#M29538</link>
      <description>&lt;P&gt;@sfatnass if you are on Splunk 6.6 or higher there is a known issue with Table Row Highlight which does not work without adding a small &lt;CODE&gt;setTimeout()&lt;/CODE&gt; delay to your JavaScript inside Table render() call. Refer to one of my older answers: &lt;A href="https://answers.splunk.com/answers/614788/splunk-dashboard-examples-table-row-highlighting-b.html"&gt;https://answers.splunk.com/answers/614788/splunk-dashboard-examples-table-row-highlighting-b.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;The answer in turn refers to a run anywhere example which should work even on Splunk 7: &lt;A href="https://answers.splunk.com/answers/588394/change-the-color-of-rows-in-a-table-based-on-text-1.html"&gt;https://answers.splunk.com/answers/588394/change-the-color-of-rows-in-a-table-based-on-text-1.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Option 2&lt;/STRONG&gt;: &lt;CODE&gt;Table formatting using expression&lt;/CODE&gt;&lt;BR /&gt;
If you are on &lt;CODE&gt;Splunk 6.5 or higher&lt;/CODE&gt; you have several &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Viz/TableFormatsXML#Color_palette_types_and_options"&gt;Table Formatting options for applying colorPalette&lt;/A&gt; including &lt;CODE&gt;expression&lt;/CODE&gt; which allows you to &lt;CODE&gt;apply color by range using nested if&lt;/CODE&gt;. (PS: &lt;CODE&gt;case&lt;/CODE&gt; is not supported)&lt;BR /&gt;
Refer to my recent answer below: &lt;A href="https://answers.splunk.com/answers/469742/how-to-edit-dashboard-to-use-token-values-to-deter.html#answer-684843"&gt;https://answers.splunk.com/answers/469742/how-to-edit-dashboard-to-use-token-values-to-deter.html#answer-684843&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2018 08:11:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449163#M29538</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-09-06T08:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449164#M29539</link>
      <description>&lt;P&gt;Just wondering. Do you have to use HTML dashboards. Pre-Splunk 6.3 HTML dashboards were a must, but now most things can be done via simpleXML with extensions.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2018 18:17:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449164#M29539</guid>
      <dc:creator>Justinboucher0</dc:creator>
      <dc:date>2018-09-06T18:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449165#M29540</link>
      <description>&lt;P&gt;i have a lot of html dashboards.&lt;/P&gt;

&lt;P&gt;when i try to use simple xml with js extension i can't retrieve the data from my handle event.&lt;/P&gt;

&lt;P&gt;e.data return undefined.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;/* jsrender.js */
require([
    "jquery",
    "splunkjs/mvc",
    "splunkjs/mvc/searchmanager",
    "splunkjs/mvc/tableview",
    "splunkjs/mvc/simplexml/ready!"
],

function($, mvc, SearchManager, TableView) {
    new SearchManager({
        id: "search_resulttable",
        search: "|inputlookup kv_data",
        preview: false,
        cache:true
    });

    new TableView({
        id: "table_search",
        managerid: "search_resulttable",
        drilldown: "none",
        wrap: true,
        el: $("#table_search")
    }).render();

    $("#table_search").on("click", function(e) {
        e.preventDefault();
        console.log(e.data);
    });
});
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Sep 2018 16:10:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449165#M29540</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2018-09-10T16:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449166#M29541</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;dashboard script="jsrender.js"&amp;gt;
      &amp;lt;label&amp;gt;tryrender&amp;lt;/label&amp;gt;
      &amp;lt;row&amp;gt;
        &amp;lt;panel&amp;gt;   
          &amp;lt;html&amp;gt;
            &amp;lt;h3&amp;gt;list of data&amp;lt;/h3&amp;gt;
            &amp;lt;div id="table_search"&amp;gt;&amp;lt;/div&amp;gt;
          &amp;lt;/html&amp;gt;
        &amp;lt;/panel&amp;gt;
      &amp;lt;/row&amp;gt;
    &amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Sep 2018 16:11:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449166#M29541</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2018-09-10T16:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449167#M29542</link>
      <description>&lt;P&gt;i tryied setTimeout() delay but nothing change.&lt;BR /&gt;
the render function wont load&lt;/P&gt;</description>
      <pubDate>Mon, 10 Sep 2018 16:13:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449167#M29542</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2018-09-10T16:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449168#M29543</link>
      <description>&lt;P&gt;i use your solution from the beginning  but the problem that the render function not loaded&lt;/P&gt;</description>
      <pubDate>Mon, 10 Sep 2018 16:15:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449168#M29543</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2018-09-10T16:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449169#M29544</link>
      <description>&lt;P&gt;Using html or xml is not the problem.&lt;BR /&gt;
I have the same bug i think, i passed from 6.3.3 to splunk 6.8 and all my scripts js are like unabled.&lt;BR /&gt;
When dashboard load at first time everything work perfectly. but when you try to add some event handler nothing happen.&lt;/P&gt;

&lt;P&gt;So i downgrade to splunk 6.5 now. the highest version where everythink work.&lt;/P&gt;

&lt;P&gt;I tried to report this on "submit case" but it's disabled for me.&lt;/P&gt;

&lt;P&gt;anybody can report the bug about splunkjs stack?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2018 13:09:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449169#M29544</guid>
      <dc:creator>ludo1603</dc:creator>
      <dc:date>2018-09-13T13:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449170#M29545</link>
      <description>&lt;P&gt;hi @Justinboucher0&lt;/P&gt;

&lt;P&gt;i update an app to show us what's my problem&lt;/P&gt;

&lt;P&gt;i try to color the cell "id" on click event.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://splunkbase.splunk.com/app/4184/release/2.0.0/download/?origin=asc"&gt;https://splunkbase.splunk.com/app/4184/release/2.0.0/download/?origin=asc&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;the app is pending approval and is not yet publicly visible but your are able to download it&lt;/P&gt;</description>
      <pubDate>Tue, 25 Sep 2018 08:43:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449170#M29545</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2018-09-25T08:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to higlight cell within html dashboards on splunk 7 ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449171#M29546</link>
      <description>&lt;P&gt;anyone can help for this topic ?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Oct 2018 07:48:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/how-to-higlight-cell-within-html-dashboards-on-splunk-7/m-p/449171#M29546</guid>
      <dc:creator>sfatnass</dc:creator>
      <dc:date>2018-10-22T07:48:50Z</dc:date>
    </item>
  </channel>
</rss>

