<?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: Qlik Sense - Identifying and styling an individual column in a widget in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Identifying-and-styling-an-individual-column-in-a/m-p/1750078#M13339</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rbartley_0-1602001023288.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/41801iC47D60C77ACD93C1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rbartley_0-1602001023288.png" alt="rbartley_0-1602001023288.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In this way, I was able to replicate a Kanban chart for our team&lt;/P&gt;</description>
    <pubDate>Tue, 06 Oct 2020 16:17:43 GMT</pubDate>
    <dc:creator>rbartley</dc:creator>
    <dc:date>2020-10-06T16:17:43Z</dc:date>
    <item>
      <title>Qlik Sense - Identifying and styling an individual column in a widget</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Identifying-and-styling-an-individual-column-in-a/m-p/1750025#M13334</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I have been looking at widgets recently to see whether they can meet my needs for a particular display of data.&amp;nbsp; The idea is that I would like to display the results of two dimensions, but with the first dimension being displayed on top of the second and the first dimension value should be represented as an html link, e.g.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data:&lt;/STRONG&gt;&lt;/P&gt;&lt;TABLE width="299"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="192"&gt;TicketID URL&lt;/TD&gt;&lt;TD width="107"&gt;Desc&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;lt;a href='#Ticket1'&amp;gt;Ticket1&amp;lt;/a&amp;gt;&lt;/TD&gt;&lt;TD&gt;A ticket….&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;lt;a href='#Ticket2'&amp;gt;Ticket2&amp;lt;/a&amp;gt;&lt;/TD&gt;&lt;TD&gt;Another ticket…&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Desired output:&lt;/STRONG&gt;&lt;/P&gt;&lt;TABLE width="192"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="192"&gt;&lt;A target="_blank" rel="noopener"&gt;Ticket1&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A ticket….&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;A target="_blank" rel="noopener"&gt;Ticket2&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Another ticket…&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far, my widget looks like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;	&amp;lt;div ng-repeat="row in data.rows" style="border: 2px solid gray"&amp;gt;
		&amp;lt;div ng-repeat="cell in row.cells"&amp;gt;
			
				
					&amp;lt;a href="{{cell.qText}}"&amp;gt;{{cell.qText}}&amp;lt;/a&amp;gt;
				
			
		&amp;lt;/div&amp;gt;
	&amp;lt;/div&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I cannot find a way of using an index or some other method for distinguishing between the first and second cell in a row.&amp;nbsp; Is this possible, or can it only ever be achieved by creating an extension?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2020 13:59:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Identifying-and-styling-an-individual-column-in-a/m-p/1750025#M13334</guid>
      <dc:creator>rbartley</dc:creator>
      <dc:date>2020-10-06T13:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Identifying and styling an individual column in a widget</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Identifying-and-styling-an-individual-column-in-a/m-p/1750041#M13335</link>
      <description>&lt;P&gt;Sorry, I just realised that I can get this bu using rows.dimensions[i] as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;	&amp;lt;div ng-repeat="row in data.rows" style="border: 2px solid gray"&amp;gt;
					&amp;lt;a href="{{row.dimensions[0].qText}}" target="_blank"&amp;gt;{{row.dimensions[1].qText}}&amp;lt;/a&amp;gt;
					&amp;lt;br&amp;gt;
					{{row.dimensions[2].qText}}
	&amp;lt;/div&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;where dimension 0 is the URL, dimension 1 is the label and dimension 2 is the description&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2020 14:45:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Identifying-and-styling-an-individual-column-in-a/m-p/1750041#M13335</guid>
      <dc:creator>rbartley</dc:creator>
      <dc:date>2020-10-06T14:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Identifying and styling an individual column in a widget</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Identifying-and-styling-an-individual-column-in-a/m-p/1750078#M13339</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rbartley_0-1602001023288.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/41801iC47D60C77ACD93C1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rbartley_0-1602001023288.png" alt="rbartley_0-1602001023288.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In this way, I was able to replicate a Kanban chart for our team&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2020 16:17:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Identifying-and-styling-an-individual-column-in-a/m-p/1750078#M13339</guid>
      <dc:creator>rbartley</dc:creator>
      <dc:date>2020-10-06T16:17:43Z</dc:date>
    </item>
  </channel>
</rss>

