<?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: set selection in an Extension by the API in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/set-selection-in-an-Extension-by-the-API/m-p/483828#M1235061</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use the SelectTextsInColumn call (in the Data part as you mention). If you define the dimensions you would like to make selections in for the extension object and then some simple expression, you could then just use this call to make selections in these dimensions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br Patrik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Oct 2013 06:49:14 GMT</pubDate>
    <dc:creator>patrik_seger</dc:creator>
    <dc:date>2013-10-18T06:49:14Z</dc:date>
    <item>
      <title>set selection in an Extension by the API</title>
      <link>https://community.qlik.com/t5/QlikView/set-selection-in-an-Extension-by-the-API/m-p/483827#M1235059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;it is possible to set a selection through the Extension API. I found something ( &lt;A href="http://qlikcommunity.s3.amazonaws.com/misc/symbols/Qv.Document.Object.Data.html#SelectTexts" title="http://qlikcommunity.s3.amazonaws.com/misc/symbols/Qv.Document.Object.Data.html#SelectTexts" target="_blank"&gt;JsDoc Reference - Qv.Document.Object.Data&lt;/A&gt; ), but this should only work with listbox objects. Hope someone could help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/set-selection-in-an-Extension-by-the-API/m-p/483827#M1235059</guid>
      <dc:creator />
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: set selection in an Extension by the API</title>
      <link>https://community.qlik.com/t5/QlikView/set-selection-in-an-Extension-by-the-API/m-p/483828#M1235061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use the SelectTextsInColumn call (in the Data part as you mention). If you define the dimensions you would like to make selections in for the extension object and then some simple expression, you could then just use this call to make selections in these dimensions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br Patrik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 06:49:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/set-selection-in-an-Extension-by-the-API/m-p/483828#M1235061</guid>
      <dc:creator>patrik_seger</dc:creator>
      <dc:date>2013-10-18T06:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: set selection in an Extension by the API</title>
      <link>https://community.qlik.com/t5/QlikView/set-selection-in-an-Extension-by-the-API/m-p/483829#M1235064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use either&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;STRONG style="color: #002ebe; font-family: 'Courier New', Courier, monospace;"&gt;&lt;A href="http://qlikcommunity.s3.amazonaws.com/misc/symbols/Qv.Document.Object.Data.html#SelectTexts"&gt;SelectTexts&lt;/A&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #002ebe; font-family: 'Courier New', Courier, monospace; font-size: 10pt; line-height: 1.5em;"&gt;(recordsToSelect)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;STRONG style="color: #002ebe; font-family: 'Courier New', Courier, monospace;"&gt;&lt;A href="http://qlikcommunity.s3.amazonaws.com/misc/symbols/Qv.Document.Object.Data.html#SelectTextsInColumn"&gt;&lt;BR /&gt;SelectTextsInColumn&lt;/A&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #002ebe; font-family: 'Courier New', Courier, monospace; font-size: 10pt; line-height: 1.5em;"&gt;(Column, toggle, recordsToSelect)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #002ebe; font-family: 'Courier New', Courier, monospace; font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #002ebe; font-family: 'Courier New', Courier, monospace; font-size: 10pt; line-height: 1.5em;"&gt;Example:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;this.Data.SelectTextsInColumn(0, false, sel)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This definitely does not only work for listboxes but also within extensions!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Nov 2013 20:06:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/set-selection-in-an-Extension-by-the-API/m-p/483829#M1235064</guid>
      <dc:creator>Stefan_Walther</dc:creator>
      <dc:date>2013-11-28T20:06:22Z</dc:date>
    </item>
  </channel>
</rss>

