<?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: Add a pop-up window in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336980#M1179641</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Andre, did you manage to resolve this issue? This is something I would like to be able to do also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 19 Oct 2013 07:39:24 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-10-19T07:39:24Z</dc:date>
    <item>
      <title>Add a pop-up window</title>
      <link>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336975#M1179636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;How do I add a pop up window when a certain value (from a list box) is selected?&amp;nbsp; For example, I have a list of names, and I would like a multibox with more information about the name to pop-up when a certain name is selected.&amp;nbsp; I tried adding conditional statements and triggers, but it is not working.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 02:43:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336975#M1179636</guid>
      <dc:creator />
      <dc:date>2012-03-06T02:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Add a pop-up window</title>
      <link>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336976#M1179637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use a macro that is triggered by a selection on the field that contain a msgbox() with more detail, but I think the best way is to create a action that is triggered to show the detail whenever a value in the listbox is selected.&amp;nbsp; The action changes a variable based on the selection count of the listbox.&amp;nbsp; If the variable is set to 1 the detail is shown and if the variable is set to 0 the detail is hidden.&amp;nbsp; I've attached an example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karl &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 03:33:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336976#M1179637</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2012-03-06T03:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: Add a pop-up window</title>
      <link>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336977#M1179638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you go through step-by-step how to create this action? I have created a variable based on the attached example, but I do not know how to assign the variable to a value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2012 00:28:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336977#M1179638</guid>
      <dc:creator />
      <dc:date>2012-03-13T00:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add a pop-up window</title>
      <link>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336978#M1179639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Go to Settings -&amp;gt; Document Settings&lt;/P&gt;&lt;P&gt;2. Select Trigger tab&lt;/P&gt;&lt;P&gt;3. In the Field Event Triggers window, select the field that the user will select to activate the "pop-up"&lt;/P&gt;&lt;P&gt;4. Click the Add Action button under the OnSelect label&lt;/P&gt;&lt;P&gt;5. Click Add&lt;/P&gt;&lt;P&gt;6. Select Action Type External&lt;/P&gt;&lt;P&gt;7. Select the action Set Variable&lt;/P&gt;&lt;P&gt;8. Click OK&lt;/P&gt;&lt;P&gt;9. In the Variable field enter in the name of the variable you created&lt;/P&gt;&lt;P&gt;10. In the Value field enter a formula like the following: =if(GetSelectedCount(Customer)=1,1,0)&lt;/P&gt;&lt;P&gt;11. Click OK&lt;/P&gt;&lt;P&gt;12. Click OK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The variable should be entered in the Conditional field in the Layout tab of the object you want to appear and disappear.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give it a test by selecting one of the values in the list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2012 00:13:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336978#M1179639</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2012-03-15T00:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Add a pop-up window</title>
      <link>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336979#M1179640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Karl is it possible to do a similar thing but based on mouse position? What I want is for the date filter panels to appear only when the mouse is at a certain coordinates, basically, like the left menu of this community, the look, share on facebook, twitter, favorite, email menu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Aug 2013 15:32:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336979#M1179640</guid>
      <dc:creator>andrefpc</dc:creator>
      <dc:date>2013-08-01T15:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: Add a pop-up window</title>
      <link>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336980#M1179641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Andre, did you manage to resolve this issue? This is something I would like to be able to do also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Oct 2013 07:39:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336980#M1179641</guid>
      <dc:creator />
      <dc:date>2013-10-19T07:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: Add a pop-up window</title>
      <link>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336981#M1179642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Jim but couldn't find an answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;André&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Oct 2013 08:15:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336981#M1179642</guid>
      <dc:creator>andrefpc</dc:creator>
      <dc:date>2013-10-21T08:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: Add a pop-up window</title>
      <link>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336982#M1179643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, thanks Andre.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Oct 2013 17:45:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-a-pop-up-window/m-p/336982#M1179643</guid>
      <dc:creator />
      <dc:date>2013-10-22T17:45:17Z</dc:date>
    </item>
  </channel>
</rss>

