<?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 create tiles view to the input values for the fieldset using CSS and HTML? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-tiles-view-to-the-input-values-for-the-fieldset/m-p/567996#M46644</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225796"&gt;@sbollam&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;did you try my example code?&lt;/P&gt;</description>
    <pubDate>Wed, 22 Sep 2021 10:29:30 GMT</pubDate>
    <dc:creator>aasabatini</dc:creator>
    <dc:date>2021-09-22T10:29:30Z</dc:date>
    <item>
      <title>How to create tiles view to the input values for the fieldset using CSS and HTML?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-tiles-view-to-the-input-values-for-the-fieldset/m-p/567963#M46641</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;I would need someone's help to accomplish the requirement. I have less knowledge on css. so seeking your help.&lt;/P&gt;&lt;P&gt;I have about 7 dashboards created, I would want one dashboard to be created having those dashboard names in the tiles view with the drilldown enabled for the respective dashboards.&lt;/P&gt;&lt;P&gt;Here tile view has to be created to the input values. Please find the image attached the way i wanted the dashboard to be shown.&lt;/P&gt;&lt;P&gt;Here in the image values shown are item1 item2, ..&lt;/P&gt;&lt;P&gt;Note: i need the css and html to be written in the dashboard instead having them in css file.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Sep 2021 06:55:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-tiles-view-to-the-input-values-for-the-fieldset/m-p/567963#M46641</guid>
      <dc:creator>sbollam</dc:creator>
      <dc:date>2021-09-22T06:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to create tiles view to the input values for the fieldset using CSS and HTML?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-tiles-view-to-the-input-values-for-the-fieldset/m-p/567975#M46642</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225796"&gt;@sbollam&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can use an html functions on xml&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;test_dashboard&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;
        &amp;lt;a href="/app/&amp;lt;your_app_name&amp;gt;/&amp;lt;dashboard_name&amp;gt;"&amp;gt;&amp;lt;link_name&amp;gt;&amp;lt;/a&amp;gt;
      &amp;lt;/h3&amp;gt;
&amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
&amp;lt;h3&amp;gt;
  &amp;lt;a href="/app/&amp;lt;your_app_name&amp;gt;/&amp;lt;dashboard_name&amp;gt;"&amp;gt;&amp;lt;link_name&amp;gt;&amp;lt;/a&amp;gt;
      &amp;lt;/h3&amp;gt;
&amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
    &amp;lt;h3&amp;gt;
        &amp;lt;a href="/app/&amp;lt;your_app_name&amp;gt;/&amp;lt;dashboard_name&amp;gt;"&amp;gt;&amp;lt;link_name&amp;gt;&amp;lt;/a&amp;gt;
      &amp;lt;/h3&amp;gt;
&amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
    &amp;lt;h3&amp;gt;
        &amp;lt;a href="/app/&amp;lt;your_app_name&amp;gt;/&amp;lt;dashboard_name&amp;gt;"&amp;gt;&amp;lt;link_name&amp;gt;&amp;lt;/a&amp;gt;
      &amp;lt;/h3&amp;gt;
&amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
    &amp;lt;h3&amp;gt;
        &amp;lt;a href="/app/&amp;lt;your_app_name&amp;gt;/&amp;lt;dashboard_name&amp;gt;"&amp;gt;&amp;lt;link_name&amp;gt;&amp;lt;/a&amp;gt;
      &amp;lt;/h3&amp;gt;
&amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html&amp;gt;
    &amp;lt;h3&amp;gt;
        &amp;lt;a href="/app/&amp;lt;your_app_name&amp;gt;/&amp;lt;dashboard_name&amp;gt;"&amp;gt;&amp;lt;link_name&amp;gt;&amp;lt;/a&amp;gt;
      &amp;lt;/h3&amp;gt;
&amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try to use this sample here&lt;BR /&gt;remember to compile the voices app_name dashboard_name and link_name with you propertly values (your dashboard, your app, and the appropriate link name.)&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;if this message help, your vote or solution confirmation is appreciate&lt;/P&gt;&lt;P&gt;Ale&lt;/P&gt;</description>
      <pubDate>Wed, 22 Sep 2021 09:27:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-tiles-view-to-the-input-values-for-the-fieldset/m-p/567975#M46642</guid>
      <dc:creator>aasabatini</dc:creator>
      <dc:date>2021-09-22T09:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to create tiles view to the input values for the fieldset using CSS and HTML?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-tiles-view-to-the-input-values-for-the-fieldset/m-p/567988#M46643</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/222210"&gt;@aasabatini&lt;/a&gt;&amp;nbsp;, I actually need the dashboard names in the tiles as shown in the attachment. When i click on the tile it has to direct me the respective dashboard.&lt;/P&gt;&lt;P&gt;I have to create a dashboard similar the image that i enclosed.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Sep 2021 10:02:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-tiles-view-to-the-input-values-for-the-fieldset/m-p/567988#M46643</guid>
      <dc:creator>sbollam</dc:creator>
      <dc:date>2021-09-22T10:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to create tiles view to the input values for the fieldset using CSS and HTML?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-tiles-view-to-the-input-values-for-the-fieldset/m-p/567996#M46644</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225796"&gt;@sbollam&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;did you try my example code?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Sep 2021 10:29:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-tiles-view-to-the-input-values-for-the-fieldset/m-p/567996#M46644</guid>
      <dc:creator>aasabatini</dc:creator>
      <dc:date>2021-09-22T10:29:30Z</dc:date>
    </item>
  </channel>
</rss>

