<?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 Javascript API / get Listbox selection status in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160251#M1309356</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way in the page javascript to bind to qva events - for instance, I would like to be alerted in Javascript every time an ajax call is completed. I see that there is qva.Doc object which has events like ondataavailable. Is it possible to bind to them?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Dec 2010 13:53:37 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-12-22T13:53:37Z</dc:date>
    <item>
      <title>Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160244#M1309347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;i am using QlikView Workbench 10, Visual Studio 2010 and a Listbox QvObject within my web application.&lt;/P&gt;&lt;P&gt;I would like to read the current selection status of my Listbox. I understood that i can reach the Listbox object itself by:&lt;/P&gt;&lt;P&gt;var obj = qva.GetQvObject("LB542");&lt;/P&gt;&lt;P&gt;According to the Javascript API, the selection is accessible through the GetSelected() method. Can anyone tell me how the correct function call would look like?&lt;/P&gt;&lt;P&gt;Btw, obj.GetSelected() is neither offered via code completion nor works out ("Object does not support this method"). I am fairly new to Javascript, mainly working with Java.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160244#M1309347</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160245#M1309349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Christian!&lt;/P&gt;&lt;P&gt;I think I know what the problem is but I'll start with some hints since you are new to javascript.&lt;/P&gt;&lt;P&gt;Instead of using the qva-namespace, try using "this" as much as you can. "this" is a reference to your own object which is the QvaPublic-namespace you can look up in the docs. All the functions and properties below qva is internal and are not documented. Furthermore they can be changed between versions and SR:s so I would suggest you start using the QvaPublic-namespace instead since the members here will not change without notice. Another benefit of using QvaPublic is that you can find examples and hints in the docs which can help you.&lt;/P&gt;&lt;P&gt;So try using "this.GetQvObject" instead. In this case it does the same thing as calling qva.GetQvObject so you wont notice any difference but it's a good habit to try avoid using qva when there's a member in QvaPublic which can help you.&lt;/P&gt;&lt;P&gt;When reading the docs you'll see that GetSelected is not a member of the object returned but rather a member on the Data-property on your object. So you should type&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;var obj = this.GetQvObject("LB542"); obj.Data.GetSelected()&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;to get the array of selected records in the listbox.&lt;/P&gt;&lt;P&gt;You should be aware of a potential problem with the approach of GetQvObject though - since the loading of objects in QV10 is asynchronously, the object returned from GetQvObject is not guaranteed to be 100% functional. There could be timing issues if you try to use the data on the returned object directly since the listbox can be partially rendered but the data is maybe not completley loaded when your Extension is ready and calls the GetQvObject.&lt;/P&gt;&lt;P&gt;To avoid this you can do several things, one is to supply a function in the GetQvObject-call as the second parameter. This function is then called upon when the listbox is renderd or updated in any way (e.g. when a selection has occured).&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;function test() {&lt;BR /&gt; alert("something happend in the listbox"); }&lt;BR /&gt;this.GetQvObject("LB542", test);&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Then make a selection in the listbox, or just move it a bit to get it to update itself.&lt;/P&gt;&lt;P&gt;Let me know if you need more help!&lt;/P&gt;&lt;P&gt;/Peter&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Oct 2010 11:59:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160245#M1309349</guid>
      <dc:creator />
      <dc:date>2010-10-29T11:59:21Z</dc:date>
    </item>
    <item>
      <title>Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160246#M1309351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter &amp;amp; thank you for your reply,&lt;/P&gt;&lt;P&gt;i see the problem about concurrency. thanks for the warning.&lt;/P&gt;&lt;P&gt;so i have tried the following:&lt;/P&gt;&lt;P&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;/P&gt;&lt;P&gt;function testSelection() {&lt;BR /&gt; var obj = this.GetQvObject("LB542"); // -&amp;gt; "object doesn't support this property or method"&lt;BR /&gt; var test = obj.Data.GetSelected();&lt;/P&gt;&lt;P&gt;var obj = qva.GetQvObject("LB542"); // -&amp;gt; the object can be seen in the debugger&lt;BR /&gt; var test = obj.Data.GetSelected(); // -&amp;gt; 'Data' is Null or not an object&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;lt;/script&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="#" onclick="testSelection()"&amp;gt;test selection&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;I think i this is a visibility problem...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Oct 2010 12:45:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160246#M1309351</guid>
      <dc:creator />
      <dc:date>2010-10-29T12:45:06Z</dc:date>
    </item>
    <item>
      <title>Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160247#M1309352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh, my bad. I thought you were building an Extension but it seems you are "injecting" your own javascript in Qlikview. Where do you place this html+javascript, do you load a html-page externally from opendoc.htm or how do you do it?&lt;BR /&gt;&lt;BR /&gt;If you don't want to use Extensions you can't use the QvaPublic namespace without some hacks so if you use this approach you'll have to disregard my last answer and revert back to use the qva-namespace. But you should probably not interact with the listbox via GetQvObject if you use the qva-namespace. Depending on what you want to do this approach is not something I would recommend since we don't really support it.&lt;BR /&gt;&lt;BR /&gt;With an Extension you can create your own object which in turn can interact with other objects to present data from external sources or just render the QV-data differently from the way standard objects do. You can have a look at some examples of Extensions on &lt;A href="http://demo10.qlik.com/"&gt;http://demo10.qlik.com/&lt;/A&gt; Look for the "Extensions examples" in the featured demos.&lt;BR /&gt;&lt;BR /&gt;Do you think Extensions can be of use to you or do you know for a fact that you rather work directly againtst the qva-namespace?&lt;BR /&gt;&lt;BR /&gt;/Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Oct 2010 13:22:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160247#M1309352</guid>
      <dc:creator />
      <dc:date>2010-10-29T13:22:57Z</dc:date>
    </item>
    <item>
      <title>Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160248#M1309353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Peter,&lt;/P&gt;&lt;P&gt;many thanks, this clarifies several things to me.&lt;/P&gt;&lt;P&gt;1. QvaPublic is for use in combination with Extensions only. Since we have complex qvw-documents already, rebuilding them in Extensions in order to have a way to communicate with them is not a real option.&lt;/P&gt;&lt;P&gt;2. Getting the selection data from a list box inside html is not meant to be done this way, so this explains the difficulties i encountered when trying so.&lt;/P&gt;&lt;P&gt;In fact what i want to do is the following: i am looking for a way to get selection data out of listboxes within my .NET webapplication, so that i can process them in other web applications. This could be done via Javascript (see 2.), via server-server-communication with QVS, or via QvObject inside the controller of my MVC webapp. The last two options would be using the qvpx protocol, which doesnt seem to be documented very well. So i am slowly running out of options here.&lt;/P&gt;&lt;P&gt;Thank you for your help, again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Oct 2010 14:03:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160248#M1309353</guid>
      <dc:creator />
      <dc:date>2010-10-29T14:03:53Z</dc:date>
    </item>
    <item>
      <title>Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160249#M1309354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the only thing you would like to do is get the selections, then qva.GetQvObject could be the best way after all.&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;function test(){&lt;BR /&gt; alert("Selections: " + this.Data.GetSelected());&lt;BR /&gt;}&lt;BR /&gt;qva.GetQvObject("LB542", test, this);&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Try this and let me know what you think?&lt;/P&gt;&lt;P&gt;/Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Oct 2010 14:42:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160249#M1309354</guid>
      <dc:creator />
      <dc:date>2010-10-29T14:42:35Z</dc:date>
    </item>
    <item>
      <title>Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160250#M1309355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that just did it! Many thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Oct 2010 15:02:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160250#M1309355</guid>
      <dc:creator />
      <dc:date>2010-10-29T15:02:54Z</dc:date>
    </item>
    <item>
      <title>Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160251#M1309356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way in the page javascript to bind to qva events - for instance, I would like to be alerted in Javascript every time an ajax call is completed. I see that there is qva.Doc object which has events like ondataavailable. Is it possible to bind to them?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Dec 2010 13:53:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160251#M1309356</guid>
      <dc:creator />
      <dc:date>2010-12-22T13:53:37Z</dc:date>
    </item>
    <item>
      <title>Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160252#M1309357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;is there a reference doc or a way to expose the methods and properties of the qva javascript? I can't find documentation that helps me understand statements like...&lt;/P&gt;&lt;P&gt;qva.Set("Document.LB55.ULC", "action", "", false);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;qva.Set(&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"LB55", "text", val, false);&lt;/P&gt;&lt;P&gt;qva.Set(&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;"Document.LB55.LOC","action","",false);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently using QV 9 SR3 on server and desktop. Any help is greatly appreciated.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Mar 2011 13:29:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160252#M1309357</guid>
      <dc:creator />
      <dc:date>2011-03-27T13:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160253#M1309358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeffrey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have struggled with the same problem and there should be an own reference document for JScript really (because it's supported)... &lt;span class="lia-unicode-emoji" title=":neutral_face:"&gt;😐&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's some example at start (and sorry that I don't know the solution about how to get active selection with Jscript) AND it really works with the Jscript &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Create listbox object&lt;/P&gt;&lt;P&gt; var sLB1 = Application.ActiveDocument().GetSheetObject("LB01");&lt;/P&gt;&lt;P&gt;//Get e.g. the first listbox value from the first "0" row and the first "0" column&amp;nbsp; &lt;/P&gt;&lt;P&gt;var sGetFirstCellValue = sLB1.GetCell(0,0);&lt;/P&gt;&lt;P&gt;//Print value in the msgbox&lt;/P&gt;&lt;P&gt;Application.MsgBox(sGetFirstCellValue.Text);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;==================================&lt;/P&gt;&lt;P&gt;Here's how you can get the active ListBox selection in the InputField (AND via UI):&lt;/P&gt;&lt;P&gt;1. Create button.&lt;/P&gt;&lt;P&gt;2. Select Actions -tab via Button Properties popup.&lt;/P&gt;&lt;P&gt;3. Select Set Variable action.&lt;/P&gt;&lt;P&gt;4. Select target attribute for value collection.&lt;/P&gt;&lt;P&gt;5. Write the value below in the Value field.&lt;/P&gt;&lt;P&gt;=GetFieldSelections([Package Name])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully these examples helped even a bit... &lt;span class="lia-unicode-emoji" title=":neutral_face:"&gt;😐&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2012 10:47:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160253#M1309358</guid>
      <dc:creator />
      <dc:date>2012-05-11T10:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160254#M1309359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried suggested tips, but test() function triggered on every selection,&amp;nbsp; non only on LB452. &lt;/P&gt;&lt;P&gt;I put&amp;nbsp; qva.GetQvObject after command Qva.Start(). &lt;/P&gt;&lt;P&gt;Something wrong? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 May 2012 12:02:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160254#M1309359</guid>
      <dc:creator />
      <dc:date>2012-05-25T12:02:43Z</dc:date>
    </item>
    <item>
      <title>Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160255#M1309360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;//Create Application object and get selected values&lt;/P&gt;&lt;P&gt;var sAD = Application.ActiveDocument();&lt;/P&gt;&lt;P&gt;var sSelections = sAD.fields("List Box Field Name").GetSelectedValues();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Put selected value in e.g. textfield (in case more selections possible, loop selections)&lt;/P&gt;&lt;P&gt;Application.ActiveDocument().Variables("sMasterSP").SetContent(sSelections.Item(0).Text,true);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2012 08:46:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160255#M1309360</guid>
      <dc:creator />
      <dc:date>2012-06-08T08:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160256#M1309361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I peter i am building an extension object which basically selection field in the list box and currently having issue with this piece of code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;//var object1 =doc.GetObject("LB15",function(){object1.Data.SelectTexts("GA")});&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The extension script is running in continuous loop i dont know wny &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2015 06:10:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160256#M1309361</guid>
      <dc:creator />
      <dc:date>2015-07-15T06:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API / get Listbox selection status</title>
      <link>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160257#M1309362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tushar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you get your issue resolved? Can you provide any inputs from your experience fixing it for the following similar question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/964009"&gt;Javascript API for listbox selected text&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;DV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2016 20:22:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Javascript-API-get-Listbox-selection-status/m-p/160257#M1309362</guid>
      <dc:creator />
      <dc:date>2016-02-05T20:22:07Z</dc:date>
    </item>
  </channel>
</rss>

