<?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: QlikSense Straight table background color in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/QlikSense-Straight-table-background-color/m-p/1948296#M78165</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;To hide multipKPI object, you need to write the below expression in styles to hide it&lt;/P&gt;
&lt;P&gt;div[tid="Object ID"] {&lt;BR /&gt;opacity: 0 !important;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;Object ID, you will get by following below steps-&lt;/P&gt;
&lt;OL class="X5LH0c"&gt;
&lt;LI&gt;Open a sheet in a Qlik Sense app in your browser&lt;/LI&gt;
&lt;LI&gt;Add &lt;STRONG&gt;/options/developer&lt;/STRONG&gt; to the url&lt;/LI&gt;
&lt;LI&gt;Right click on an object and choose "Developer"&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;l&lt;/SPAN&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/5725" target="_blank"&gt;Developer menu in Qlik Sense client&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jun 2022 06:37:38 GMT</pubDate>
    <dc:creator>salonicdk28</dc:creator>
    <dc:date>2022-06-27T06:37:38Z</dc:date>
    <item>
      <title>QlikSense Straight table background color</title>
      <link>https://community.qlik.com/t5/App-Development/QlikSense-Straight-table-background-color/m-p/1947545#M78088</link>
      <description>&lt;P&gt;Hi Experts,&lt;BR /&gt;&lt;BR /&gt;Please suggest some solution to do header background color in Straight Table (QlikSense native object).&lt;BR /&gt;&lt;BR /&gt;Many Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2022 16:38:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QlikSense-Straight-table-background-color/m-p/1947545#M78088</guid>
      <dc:creator>usama_waqar94</dc:creator>
      <dc:date>2022-06-23T16:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: QlikSense Straight table background color</title>
      <link>https://community.qlik.com/t5/App-Development/QlikSense-Straight-table-background-color/m-p/1947703#M78107</link>
      <description>&lt;P&gt;For this, you need to write styles (CSS) in multi KPI object&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2022 05:28:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QlikSense-Straight-table-background-color/m-p/1947703#M78107</guid>
      <dc:creator>salonicdk28</dc:creator>
      <dc:date>2022-06-24T05:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: QlikSense Straight table background color</title>
      <link>https://community.qlik.com/t5/App-Development/QlikSense-Straight-table-background-color/m-p/1947831#M78115</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/135794"&gt;@salonicdk28&lt;/a&gt;&amp;nbsp; is right. you need the multi kpi object for this.&lt;/P&gt;
&lt;P&gt;this can be located here&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MartW_0-1656065813829.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/82587i46666F46EF2E8C47/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MartW_0-1656065813829.png" alt="MartW_0-1656065813829.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I would advice reading this post.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-Documents/Dashboard-Design-QS-CSS-MasterClass-video/ta-p/1787091/show-comments/true/page/2" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/Qlik-Sense-Documents/Dashboard-Design-QS-CSS-MasterClass-video/ta-p/1787091/show-comments/true/page/2&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;there is an example that fit your needs&lt;/P&gt;
&lt;P&gt;Also here is the CSS to get you started&lt;/P&gt;
&lt;P&gt;/* -- styling background straight table -- */&lt;BR /&gt;.qv-st table {&lt;BR /&gt;background: linear-gradient(to right, #25c481, #25b7c4);&lt;BR /&gt;color: white !important;&lt;BR /&gt;border-collapse: unset;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;.qv-st-header&amp;gt;tr {&lt;BR /&gt;background-color: rgba(255,255,255,0.4);&lt;BR /&gt;color: white !important;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;.qv-st-header .qv-st-total-cell, .qv-st-data-cell, .qv-st-header-cell {&lt;BR /&gt;border-bottom: 1px solid rgba(255,255,255,0.2) !important;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;.qv-st-data-cell-null-value {&lt;BR /&gt;background-color: unset !important;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;.touch-off .qv-st-interactive:not(.qv-st-selections-active):not(.qv-st-reordering-active) .qv-st-header:not(.qv-st-custom-header) .qv-st-header-cell-search:hover:not(:active):not(.qv-st-header-cell-search-open), .touch-off .qv-st-navigatable:not(.qv-st-selections-active):not(.qv-st-reordering-active) .qv-st-header-sortable:not(.qv-st-custom-header):hover:not(:active):not(.qv-st-header-cell-search-open) {&lt;BR /&gt;background-color: #006581;&lt;BR /&gt;cursor: pointer;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;.qv-st-bottom-header .qv-st-total-cell {&lt;BR /&gt;border-top: 1px solid #fff;;&lt;BR /&gt;color: #fff;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2022 10:20:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QlikSense-Straight-table-background-color/m-p/1947831#M78115</guid>
      <dc:creator>MartW</dc:creator>
      <dc:date>2022-06-24T10:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: QlikSense Straight table background color</title>
      <link>https://community.qlik.com/t5/App-Development/QlikSense-Straight-table-background-color/m-p/1948158#M78148</link>
      <description>&lt;P&gt;Great .Thank You&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/148999"&gt;@MartW&lt;/a&gt;&amp;nbsp;.&amp;nbsp;&lt;BR /&gt;After using above mentioned CSS in Multi KPI object. Do we have any option to hide Multi KPI object from sheet or how can we keep the CSS properties over the straight table.&lt;/P&gt;
&lt;P&gt;As of now, I have used the CSS code in multi KPI object and if I remove the multi KPI object CSS properties are automatically disappearing from Straight Table native object.&lt;/P&gt;
&lt;P&gt;Please suggest.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jun 2022 12:55:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QlikSense-Straight-table-background-color/m-p/1948158#M78148</guid>
      <dc:creator>usama_waqar94</dc:creator>
      <dc:date>2022-06-25T12:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: QlikSense Straight table background color</title>
      <link>https://community.qlik.com/t5/App-Development/QlikSense-Straight-table-background-color/m-p/1948296#M78165</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;To hide multipKPI object, you need to write the below expression in styles to hide it&lt;/P&gt;
&lt;P&gt;div[tid="Object ID"] {&lt;BR /&gt;opacity: 0 !important;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;Object ID, you will get by following below steps-&lt;/P&gt;
&lt;OL class="X5LH0c"&gt;
&lt;LI&gt;Open a sheet in a Qlik Sense app in your browser&lt;/LI&gt;
&lt;LI&gt;Add &lt;STRONG&gt;/options/developer&lt;/STRONG&gt; to the url&lt;/LI&gt;
&lt;LI&gt;Right click on an object and choose "Developer"&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;l&lt;/SPAN&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/5725" target="_blank"&gt;Developer menu in Qlik Sense client&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 06:37:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QlikSense-Straight-table-background-color/m-p/1948296#M78165</guid>
      <dc:creator>salonicdk28</dc:creator>
      <dc:date>2022-06-27T06:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: QlikSense Straight table background color</title>
      <link>https://community.qlik.com/t5/App-Development/QlikSense-Straight-table-background-color/m-p/2434966#M96943</link>
      <description>&lt;P&gt;Hi Mart,&lt;/P&gt;
&lt;P&gt;I am unable to use both in same multi KPI object css section&lt;/P&gt;
&lt;P&gt;.qv-st table {&lt;BR /&gt;background: linear-gradient(to right, #25c481, #25b7c4);&lt;BR /&gt;color: white !important;&lt;BR /&gt;border-collapse: unset;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;.qv-st-header&amp;gt;tr {&lt;BR /&gt;background-color: rgba(255,255,255,0.4);&lt;BR /&gt;color: white !important;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;For each change do we need to take multi KPI object? or is there any specific syntax to write above both the code?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mahamed_Qlik_1-1711516655662.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/162793i4FD65DB22EE8F4F7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Mahamed_Qlik_1-1711516655662.png" alt="Mahamed_Qlik_1-1711516655662.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2024 05:17:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QlikSense-Straight-table-background-color/m-p/2434966#M96943</guid>
      <dc:creator>Mahamed_Qlik</dc:creator>
      <dc:date>2024-03-27T05:17:43Z</dc:date>
    </item>
  </channel>
</rss>

