<?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 use glowing/flashing button using CSS/HTML in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493091#M32286</link>
    <description>&lt;P&gt;@hrs2019 If you want table with icon (built-in or custom), you should try &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;Splunk Dashboard Examples&lt;/A&gt; app which has &lt;CODE&gt;Table Icon Set (Rangemap)&lt;/CODE&gt; specifically for such use case. You can also try out the following blogs: &lt;A href="https://www.splunk.com/en_us/blog/tips-and-tricks/custom-icons-in-splunk-6-tables.html"&gt;https://www.splunk.com/en_us/blog/tips-and-tricks/custom-icons-in-splunk-6-tables.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You can also add your own glow animation as per your question:&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/8854i126E499689A81EE3/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Following is a run anywhere example.&lt;/P&gt;

&lt;P&gt;Simple XML Dashboard:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard script="table_glowing_icons.js" theme="dark"&amp;gt;
  &amp;lt;label&amp;gt;Table with Glowing Icons&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;style&amp;gt;
          td.icon {
              text-align: center;
          }
          td.icon i {
              font-size: 25px;
          }
          td.icon .severe {
              color: red;
          }
          td.icon .elevated {
              color: orangered;
          }
          td.icon .low {
              color: #006400;
          }
          td.icon i.severe::before,
          td.icon i.elevated::before{
            -webkit-animation: glowing 1500ms infinite;
          }
          @-webkit-keyframes glowing {
            0%   {opacity: 0.1;font-size:medium;text-shadow: 0 0 3px #DC4E41;}
            25%  {opacity: 0.7;font-size:large;text-shadow: 0 0 10px #DC4E41;}
            75%  {opacity: 1;font-size:x-large;text-shadow: 0 0 30px #DC4E41;}
            100% {opacity: 0.7;font-size:large;text-shadow: 0 0 10px #DC4E41;}
          }
          .icon-inline i {
              font-size: 18px;
              margin-left: 5px;
          }
          .icon-inline i.icon-alert-circle {
              color: #ef392c;
          }
          .icon-inline i.icon-alert {
              color: #ff9c1a;
          }
          .icon-inline i.icon-check {
              color: #5fff5e;
          }
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;
      &amp;lt;table id="table1"&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults 
| eval ApName="CCP,SSD,FF,DDD,RT","Area CP Name"="test" 
| makemv ApName delim="," 
| mvexpand ApName 
| streamstats count as sno
| eval CLevel=case(sno%2==0, "low",sno%3==0, "severe",true(),"elevated") 
| table ApName "Area CP Name" CLevel&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&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;false&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;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Required JS file: &lt;CODE&gt;table_glowing_icons.js&lt;/CODE&gt;&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 RangeMapIconRenderer = TableView.BaseCellRenderer.extend({
        canRender: function(cell) {
            // Only use the cell renderer for the CLevel field
            return cell.field === 'CLevel';
        },
        render: function($td, cell) {
            // Create the icon element and add it to the table cell
            $td.addClass('icon').html(_.template('&amp;lt;i class="icon-alert-circle &amp;lt;%- CLevel %&amp;gt;" title="&amp;lt;%- CLevel %&amp;gt;"&amp;gt;&amp;lt;/i&amp;gt;', {
                CLevel: cell.value,
            }));
        }
    });
    mvc.Components.get('table1').getVisualization(function(tableView){
        // Register custom cell renderer, the table will re-render automatically
        tableView.addCellRenderer(new RangeMapIconRenderer());
    });
});
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;PS: If you dont want JS and are fine without using Dark Theme, you can try out &lt;CODE&gt;Unicode Icon in Table&lt;/CODE&gt; like &lt;BR /&gt;
&lt;A href="https://emojipedia.org/large-orange-circle/"&gt;https://emojipedia.org/large-orange-circle/&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://emojipedia.org/large-red-circle/"&gt;https://emojipedia.org/large-red-circle/&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://emojipedia.org/large-green-circle/"&gt;https://emojipedia.org/large-green-circle/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Refer to answers: &lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/681268/one-rangemap-column-for-multiple-values.html"&gt;https://answers.splunk.com/answers/681268/one-rangemap-column-for-multiple-values.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/755100/how-to-add-icons-for-the-multiple-fields-in-splunk.html"&gt;https://answers.splunk.com/answers/755100/how-to-add-icons-for-the-multiple-fields-in-splunk.html&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 14 May 2020 13:22:17 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2020-05-14T13:22:17Z</dc:date>
    <item>
      <title>How to use glowing/flashing button using CSS/HTML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493087#M32282</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;
&lt;P&gt;How to use glowing/flashing button to show the status as &lt;STRONG&gt;connect or disconnect&lt;/STRONG&gt; &lt;BR /&gt;if connect its show in green and if its disconnects are shown in red.&lt;/P&gt;
&lt;P&gt;i am using CSV file (raj100) for staus info.&lt;BR /&gt;i want to show this glowing/flashing button in the status field like the 1st screenshot.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/8856i0964B00903EEDD95/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt; &lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/8857i8B58FA2745EEC79C/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;i am using below XML code.
    &amp;lt;dashboard script="panel_tooltip.js" theme="dark"&amp;gt;
      &amp;lt;label&amp;gt;test&amp;lt;/label&amp;gt;
      &amp;lt;row&amp;gt;

        &amp;lt;html&amp;gt;
    &amp;lt;a class="button" href="#"&amp;gt;Connected&amp;lt;/a&amp;gt;

    &amp;lt;style&amp;gt;
    &amp;lt;body&amp;gt;
     {
      background: black;
    }
    .button {
      background-color: #004A7F;
      -webkit-border-radius: 10px;
      border-radius: 10px;
      border: none;
      color: #FFFFFF;
      cursor: pointer;
      display: inline-block;
      font-family: Arial;
      font-size: 20px;
      padding: 5px 10px;
      text-align: center;
      text-decoration: none;
      -webkit-animation: glowing 1500ms infinite;
      -moz-animation: glowing 1500ms infinite;
      -o-animation: glowing 1500ms infinite;
      animation: glowing 1500ms infinite;
    }
    @-webkit-keyframes glowing {
      0% { background-color: #63f707; -webkit-box-shadow: 0 0 3px #B20000; }
      50% { background-color: #469416; -webkit-box-shadow: 0 0 40px #FF0000; }
      100% { background-color: #63f707; -webkit-box-shadow: 0 0 3px #B20000; }
    }
    &amp;lt;/style&amp;gt;
    &amp;lt;/body&amp;gt;
    &amp;lt;/html&amp;gt;

        &amp;lt;panel&amp;gt;
    &amp;lt;title&amp;gt;Status&amp;lt;/title&amp;gt;
          &amp;lt;table&amp;gt;
            &amp;lt;search&amp;gt;
              &amp;lt;query&amp;gt;| inputlookup raj100|table ApName "Area CP Name" CLevel Date 
    | eval CLevel=if(like(ApName,"%CCP%"), "Connected", "disconnected")
    |table ApName "Area CP Name" CLevel&amp;lt;/query&amp;gt;
              &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
              &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
            &amp;lt;/search&amp;gt;
            &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
          &amp;lt;/table&amp;gt;
        &amp;lt;/panel&amp;gt;
      &amp;lt;/row&amp;gt;
    &amp;lt;/dashboard&amp;gt;
CodePen Home
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Jun 2020 00:02:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493087#M32282</guid>
      <dc:creator>hrs2019</dc:creator>
      <dc:date>2020-06-08T00:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to use glowing/flashing button using CSS/HTML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493088#M32283</link>
      <description>&lt;P&gt;@hrs2019 if you want purely CSS based approach you can try the following, where colorPalette &lt;CODE&gt;map&lt;/CODE&gt; is used to assign Green or Red Color based on Connected or Disconnected&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;     &amp;lt;format type="color" field="CLevel"&amp;gt;
       &amp;lt;colorPalette type="map"&amp;gt;{"Disconnected":#DC4E41,"Connected":#53A051}&amp;lt;/colorPalette&amp;gt;
     &amp;lt;/format&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and Glow animation is always shades of Grey (static).&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;        @-webkit-keyframes glowing {
          0%   {opacity: 0.5; -webkit-box-shadow: 0 0 3px #F7F8FA;}
          50%  {opacity: 0.7; -webkit-box-shadow: 0 0 40px #E1E6EB;}
          100% {opacity: 1; -webkit-box-shadow: 0 0 3px #F7F8FA;}
        }
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you want both rendering and glow to be as per CLevel field value, you will have to use Simple XML JS Extension to apply appropriate classes to each cell and have glowing CSS override according to the class. You can refer to Splunk Dashboard Examples app or several answers on Splunk Answers Table Cell rendering to see how you can access Table Cell value in JS and assign Class as per the table cell. For example: &lt;A href="https://answers.splunk.com/answers/637615/why-is-the-table-cell-highlighting-not-reading-the.html"&gt;https://answers.splunk.com/answers/637615/why-is-the-table-cell-highlighting-not-reading-the.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/8853iD4570CB1D063814D/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Following is the complete Simple XML Code:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard script="panel_tooltip.js" theme="dark"&amp;gt;
  &amp;lt;label&amp;gt;Table with Flashing Buttons&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel depends="$alwaysHideCSSOverride$"&amp;gt;
      &amp;lt;html&amp;gt;
          &amp;lt;style&amp;gt;
            #tableWithGlowingButtons table td:nth-child(3) {
               border-radius: 10px;
               border: none;
               cursor: pointer;
               display: inline-block;
               font-family: Arial;
               font-size: 12px;
               margin: 5px;
               padding: 5px 10px;
               text-align: center;
               text-decoration: none;
               -webkit-animation: glowing 1500ms infinite;
            }
            @-webkit-keyframes glowing {
              0%   {opacity: 0.5; -webkit-box-shadow: 0 0 3px #F7F8FA;}
              50%  {opacity: 0.7; -webkit-box-shadow: 0 0 40px #E1E6EB;}
              100% {opacity: 1; -webkit-box-shadow: 0 0 3px #F7F8FA;}
            }
          &amp;lt;/style&amp;gt;
        &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Status&amp;lt;/title&amp;gt;
      &amp;lt;table id="tableWithGlowingButtons"&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults
| eval ApName="CCP,SSD,FF,DDD,RT","Area CP Name"="test"
| makemv ApName delim=","
| mvexpand ApName
| eval CLevel=if(like(ApName,"%CCP%"), "Connected", "Disconnected") 
| table ApName "Area CP Name" CLevel&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;format type="color" field="CLevel"&amp;gt;
          &amp;lt;colorPalette type="map"&amp;gt;{"Disconnected":#DC4E41,"Connected":#53A051}&amp;lt;/colorPalette&amp;gt;
        &amp;lt;/format&amp;gt;
      &amp;lt;/table&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, 11 May 2020 09:45:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493088#M32283</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-05-11T09:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to use glowing/flashing button using CSS/HTML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493089#M32284</link>
      <description>&lt;P&gt;@niketnilay Thank again your solution always easy to understand. &lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2020 18:03:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493089#M32284</guid>
      <dc:creator>hrs2019</dc:creator>
      <dc:date>2020-05-11T18:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to use glowing/flashing button using CSS/HTML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493090#M32285</link>
      <description>&lt;P&gt;@niketnilay  if i want to use gif instead of connected or disconnected how i can add in cleavel. &lt;BR /&gt;
gif link is &lt;BR /&gt;
&lt;A href="https://github.com/hemraj26/test/blob/master/red.gif"&gt;https://github.com/hemraj26/test/blob/master/red.gif&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://github.com/hemraj26/test/blob/master/yellow.gif"&gt;https://github.com/hemraj26/test/blob/master/yellow.gif&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2020 11:26:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493090#M32285</guid>
      <dc:creator>hrs2019</dc:creator>
      <dc:date>2020-05-14T11:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to use glowing/flashing button using CSS/HTML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493091#M32286</link>
      <description>&lt;P&gt;@hrs2019 If you want table with icon (built-in or custom), you should try &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;Splunk Dashboard Examples&lt;/A&gt; app which has &lt;CODE&gt;Table Icon Set (Rangemap)&lt;/CODE&gt; specifically for such use case. You can also try out the following blogs: &lt;A href="https://www.splunk.com/en_us/blog/tips-and-tricks/custom-icons-in-splunk-6-tables.html"&gt;https://www.splunk.com/en_us/blog/tips-and-tricks/custom-icons-in-splunk-6-tables.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You can also add your own glow animation as per your question:&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/8854i126E499689A81EE3/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Following is a run anywhere example.&lt;/P&gt;

&lt;P&gt;Simple XML Dashboard:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard script="table_glowing_icons.js" theme="dark"&amp;gt;
  &amp;lt;label&amp;gt;Table with Glowing Icons&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;style&amp;gt;
          td.icon {
              text-align: center;
          }
          td.icon i {
              font-size: 25px;
          }
          td.icon .severe {
              color: red;
          }
          td.icon .elevated {
              color: orangered;
          }
          td.icon .low {
              color: #006400;
          }
          td.icon i.severe::before,
          td.icon i.elevated::before{
            -webkit-animation: glowing 1500ms infinite;
          }
          @-webkit-keyframes glowing {
            0%   {opacity: 0.1;font-size:medium;text-shadow: 0 0 3px #DC4E41;}
            25%  {opacity: 0.7;font-size:large;text-shadow: 0 0 10px #DC4E41;}
            75%  {opacity: 1;font-size:x-large;text-shadow: 0 0 30px #DC4E41;}
            100% {opacity: 0.7;font-size:large;text-shadow: 0 0 10px #DC4E41;}
          }
          .icon-inline i {
              font-size: 18px;
              margin-left: 5px;
          }
          .icon-inline i.icon-alert-circle {
              color: #ef392c;
          }
          .icon-inline i.icon-alert {
              color: #ff9c1a;
          }
          .icon-inline i.icon-check {
              color: #5fff5e;
          }
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;
      &amp;lt;table id="table1"&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults 
| eval ApName="CCP,SSD,FF,DDD,RT","Area CP Name"="test" 
| makemv ApName delim="," 
| mvexpand ApName 
| streamstats count as sno
| eval CLevel=case(sno%2==0, "low",sno%3==0, "severe",true(),"elevated") 
| table ApName "Area CP Name" CLevel&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&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;false&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;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Required JS file: &lt;CODE&gt;table_glowing_icons.js&lt;/CODE&gt;&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 RangeMapIconRenderer = TableView.BaseCellRenderer.extend({
        canRender: function(cell) {
            // Only use the cell renderer for the CLevel field
            return cell.field === 'CLevel';
        },
        render: function($td, cell) {
            // Create the icon element and add it to the table cell
            $td.addClass('icon').html(_.template('&amp;lt;i class="icon-alert-circle &amp;lt;%- CLevel %&amp;gt;" title="&amp;lt;%- CLevel %&amp;gt;"&amp;gt;&amp;lt;/i&amp;gt;', {
                CLevel: cell.value,
            }));
        }
    });
    mvc.Components.get('table1').getVisualization(function(tableView){
        // Register custom cell renderer, the table will re-render automatically
        tableView.addCellRenderer(new RangeMapIconRenderer());
    });
});
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;PS: If you dont want JS and are fine without using Dark Theme, you can try out &lt;CODE&gt;Unicode Icon in Table&lt;/CODE&gt; like &lt;BR /&gt;
&lt;A href="https://emojipedia.org/large-orange-circle/"&gt;https://emojipedia.org/large-orange-circle/&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://emojipedia.org/large-red-circle/"&gt;https://emojipedia.org/large-red-circle/&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://emojipedia.org/large-green-circle/"&gt;https://emojipedia.org/large-green-circle/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Refer to answers: &lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/681268/one-rangemap-column-for-multiple-values.html"&gt;https://answers.splunk.com/answers/681268/one-rangemap-column-for-multiple-values.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/755100/how-to-add-icons-for-the-multiple-fields-in-splunk.html"&gt;https://answers.splunk.com/answers/755100/how-to-add-icons-for-the-multiple-fields-in-splunk.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2020 13:22:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493091#M32286</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-05-14T13:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to use glowing/flashing button using CSS/HTML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493092#M32287</link>
      <description>&lt;P&gt;Thanks again @niketnilay  it is working i have tested in my local splunk.&lt;BR /&gt;
 But i don't have admin access  in my office splunk enterprise so i can't upload JS file there.&lt;BR /&gt;
just want to know  do we have any option using CSS? without uploading JS file.&lt;/P&gt;</description>
      <pubDate>Sun, 17 May 2020 10:58:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493092#M32287</guid>
      <dc:creator>hrs2019</dc:creator>
      <dc:date>2020-05-17T10:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to use glowing/flashing button using CSS/HTML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493093#M32288</link>
      <description>&lt;P&gt;@hrs2019 Unicode is the only option as I have mentioned above. Dark Mode will not work. Please try out and confirm!&lt;/P&gt;</description>
      <pubDate>Sun, 17 May 2020 13:32:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493093#M32288</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-05-17T13:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to use glowing/flashing button using CSS/HTML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493094#M32289</link>
      <description>&lt;P&gt;Thanks  @niketnilay it is working &lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2020 12:33:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-use-glowing-flashing-button-using-CSS-HTML/m-p/493094#M32289</guid>
      <dc:creator>hrs2019</dc:creator>
      <dc:date>2020-05-20T12:33:06Z</dc:date>
    </item>
  </channel>
</rss>

