<?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 How to pull Image into qvw in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-pull-Image-into-qvw/m-p/203673#M60922</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ASIM,&lt;/P&gt;&lt;P&gt;Thanks for your kind reply.I hope for your qvw it is pulling data directly from online.In that case it is fine.&lt;/P&gt;&lt;P&gt;Now I want to fetch th data which is availble as offline.On that case how should data should be.Please share me with some model data source file,even as xls.It would be greatful for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jai&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Jan 2010 09:56:35 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-01-07T09:56:35Z</dc:date>
    <item>
      <title>How to pull Image into qvw</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-Image-into-qvw/m-p/203671#M60920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I am having one scenario that,I have to show some image in list box.When am pulling that image did not showing any image in qvw.I am using bundle info only to pull the data.So any of you have came across this kind of issue please let me know how to fix....&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jai&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>Thu, 07 Jan 2010 06:38:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-Image-into-qvw/m-p/203671#M60920</guid>
      <dc:creator />
      <dc:date>2010-01-07T06:38:05Z</dc:date>
    </item>
    <item>
      <title>How to pull Image into qvw</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-Image-into-qvw/m-p/203672#M60921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jai,&lt;/P&gt;&lt;P&gt;I use below code in one of my file with success:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;forecast_conditions:&lt;BR /&gt;LOAD [condition/data],&lt;BR /&gt; [icon/data],&lt;BR /&gt; [icon/data] as ForeCastImg, //Key&lt;BR /&gt; [high/data],&lt;BR /&gt; [low/data],&lt;BR /&gt; [day_of_week/data],&lt;BR /&gt; %Key_xml_api_reply_5B90566A772C5AA3 // Key to parent table: xml_api_reply&lt;BR /&gt;FROM [http://www.google.com/ig/api?weather=Copenhagen&amp;amp;hl=en] (XmlSimple, Table is [xml_api_reply/weather/forecast_conditions]);&lt;BR /&gt;&lt;BR /&gt;xml_api_reply:&lt;BR /&gt;LOAD version,&lt;BR /&gt; [weather/module_id] as module_id,&lt;BR /&gt; [weather/tab_id] as tab_id,&lt;BR /&gt; [weather/mobile_row] as mobile_row,&lt;BR /&gt; [weather/mobile_zipped] as mobile_zipped,&lt;BR /&gt; [weather/row] as row,&lt;BR /&gt; [weather/section] as section,&lt;BR /&gt; [weather/current_conditions/wind_condition/data] as [wind_condition/data],&lt;BR /&gt; [weather/current_conditions/icon/data] as [current_conditions/icon/data],&lt;BR /&gt; [weather/current_conditions/humidity/data] as [humidity/data],&lt;BR /&gt; [weather/current_conditions/temp_c/data] as [temp_c/data],&lt;BR /&gt; [weather/current_conditions/temp_f/data] as [temp_f/data],&lt;BR /&gt; [weather/current_conditions/condition/data] as [current_conditions/condition/data],&lt;BR /&gt; [weather/forecast_information/unit_system/data] as [unit_system/data],&lt;BR /&gt; [weather/forecast_information/current_date_time/data] as [current_date_time/data],&lt;BR /&gt; [weather/forecast_information/forecast_date/data] as [forecast_date/data],&lt;BR /&gt; [weather/forecast_information/postal_code/data] as [postal_code/data],&lt;BR /&gt; [weather/forecast_information/city/data] as [city/data],&lt;BR /&gt; %Key_xml_api_reply_5B90566A772C5AA3 // Key for this table: xml_api_reply&lt;BR /&gt;FROM [http://www.google.com/ig/api?weather=Copenhagen&amp;amp;hl=en] (XmlSimple, Table is [xml_api_reply]);&lt;BR /&gt;CurrentImages:&lt;BR /&gt;BUNDLE INFO LOAD&lt;BR /&gt; [weather/current_conditions/icon/data] as Current_Image,&lt;BR /&gt; 'http://www.google.com'&amp;amp;[weather/current_conditions/icon/data] as Current_Path&lt;BR /&gt;FROM [http://www.google.com/ig/api?weather=Copenhagen&amp;amp;hl=en] (XmlSimple, Table is [xml_api_reply]);&lt;BR /&gt;ForeCastImages:&lt;BR /&gt;BUNDLE INFO LOAD&lt;BR /&gt; [icon/data] as ForeCastImg,&lt;BR /&gt; 'http://www.google.com'&amp;amp;[icon/data] as ForecastPath&lt;BR /&gt;FROM [http://www.google.com/ig/api?weather=Copenhagen&amp;amp;hl=en] (XmlSimple, Table is [xml_api_reply/weather/forecast_conditions]);&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2010 08:39:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-Image-into-qvw/m-p/203672#M60921</guid>
      <dc:creator />
      <dc:date>2010-01-07T08:39:47Z</dc:date>
    </item>
    <item>
      <title>How to pull Image into qvw</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-Image-into-qvw/m-p/203673#M60922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ASIM,&lt;/P&gt;&lt;P&gt;Thanks for your kind reply.I hope for your qvw it is pulling data directly from online.In that case it is fine.&lt;/P&gt;&lt;P&gt;Now I want to fetch th data which is availble as offline.On that case how should data should be.Please share me with some model data source file,even as xls.It would be greatful for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jai&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2010 09:56:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-Image-into-qvw/m-p/203673#M60922</guid>
      <dc:creator />
      <dc:date>2010-01-07T09:56:35Z</dc:date>
    </item>
    <item>
      <title>How to pull Image into qvw</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-Image-into-qvw/m-p/203674#M60923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jai,&lt;/P&gt;&lt;P&gt;If you want to use offline pictures I can suggest you to use below example:&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/media/p/84134/download.aspx"&gt;http://community.qlik.com/media/p/84134/download.aspx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I think It would be useful for you.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Asim Akin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jan 2010 10:11:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-Image-into-qvw/m-p/203674#M60923</guid>
      <dc:creator />
      <dc:date>2010-01-07T10:11:41Z</dc:date>
    </item>
  </channel>
</rss>

