<?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: Can't launch URL from table expression using IE Plugin in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Can-t-launch-URL-from-table-expression-using-IE-Plugin/m-p/295260#M495892</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this issue has 2 simple solutions (this solution also supports sub domain):&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; font-size: 12pt; text-decoration: underline;"&gt;&lt;STRONG&gt;1.&lt;/STRONG&gt;&lt;/SPAN&gt; intervene in the opendoc.htm&lt;/P&gt;&lt;P&gt;the file location is:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;C:\Program Files\QlikView\Server\QlikViewClients\QlikViewAjax&lt;/P&gt;






&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can put a listener on the dom&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14844839038906147 jive_text_macro" jivemacro_uid="_14844839038906147"&gt;
&lt;P&gt;$(document).bind('DOMSubtreeModified', function () {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; $("a[target='_blank']").each(function(i, element){resetBlankLinks(element);});&lt;/P&gt;
&lt;P&gt;});&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;function resetBlankLinks(element){&lt;/P&gt;
&lt;P&gt;&amp;nbsp; element.setAttribute('onclick','eval("'+element.href+'")');&lt;/P&gt;
&lt;P&gt;&amp;nbsp; element.target="_self";&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;function &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;somefunction&lt;/SPAN&gt;(relativePath) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; window.open(document.referrer.match(/h(.[^/]+)/)[0] + "//" + document.referrer.match(/:\/\/(.[^/]+)/)[1] + relativePath);&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;/P&gt;





&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now your qlikview table link will be&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14844839312129322" jivemacro_uid="_14844839312129322"&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;'☍&amp;lt;url&amp;gt;javascript:void(somefunction("/SomeRelativePath/?SomeParam='&amp;amp;[SomeId]&amp;amp;'"))'&lt;/SPAN&gt;&lt;/P&gt;





&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is a solution that lets you go to a function you decide and do whatever you want, but i also slows down the dom a bit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; font-size: 12pt; text-decoration: underline;"&gt;&lt;STRONG&gt;2.&lt;/STRONG&gt;&lt;/SPAN&gt; this solution i like better, &lt;SPAN style="font-size: 10pt;"&gt;you can go to relevant qlikview scripts and change them (if your using the web client):&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;go to&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;C:\Program Files\QlikView\Server\QlikViewClients\QlikViewAjax&lt;/P&gt;






&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;now you need to search in files for&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;v.target="_blank"&lt;/P&gt;






&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;i found:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;C:\Program Files\QlikView\Server\QlikViewClients\QlikViewAjax\htc\QvAjax.js&lt;/LI&gt;&lt;LI&gt;C:\Program Files\QlikView\Server\QlikViewClients\QlikViewAjax\mobile\js\smalldevices.js&lt;/LI&gt;&lt;LI&gt;the Qv.exe you cant change and this is not used in the web client&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in each file you will find few locations (should be 2), i'v changed them &lt;BR /&gt;from:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14844840011014720" jivemacro_uid="_14844840011014720"&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;v.target="_blank";&lt;/SPAN&gt;&lt;/P&gt;




&lt;/PRE&gt;&lt;P&gt;to:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14844840218941900" jivemacro_uid="_14844840218941900"&gt;
&lt;P&gt;v.target="_self";v.onclick=eval(m.url);&lt;/P&gt;




&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and my BI url is now:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14844840404683040 jive_text_macro" jivemacro_uid="_14844840404683040"&gt;
&lt;P&gt;'☍&amp;lt;url&amp;gt;javascript:void(window.open(document.referrer.match(/h(.[^/]+)/)[0] + "//" + document.referrer.match(/:\/\/(.[^/]+)/)[1] + "/SomeRelativePath/?SomeParam='&amp;amp;[SomeId]&amp;amp;'"));'&lt;/P&gt;




&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see if this helps you, maybe you will want different stuff but this is how you can do it.&lt;/P&gt;&lt;P&gt;you might want to use different target, see:&lt;BR /&gt;&lt;A href="http://www.w3schools.com/tags/att_a_target.asp" title="http://www.w3schools.com/tags/att_a_target.asp"&gt;HTML a target Attribute&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in any case you can open chrome developer tools (F12) to see the code that is created:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14844901079687389" jivemacro_uid="_14844901079687389"&gt;
&lt;P&gt;&amp;lt;a href='javascript:void(window.open(document.referrer.match(/h(.[^/]+)/)[0]%20+%20&amp;amp;quot;//&amp;amp;quot;%20+%20document.referrer.match(/:\/\/(.[^/]+)/)[1]%20+%20&amp;amp;quot;/SomeRelativePath/?SomeParam=SomeId&amp;amp;quot;));'&lt;/P&gt;
&lt;P&gt;target="_self"&lt;/P&gt;
&lt;P&gt;onclick="eval(&amp;amp;quot;javascript:void(window.open(document.referrer.match(/h(.[^/]+)/)[0] + &amp;amp;quot;//&amp;amp;quot; + document.referrer.match(/:\/\/(.[^/]+)/)[1] + &amp;amp;quot;/SomeRelativePath/?SomeParam=SomeId&amp;amp;quot;));&amp;amp;quot;)"&lt;/P&gt;
&lt;P&gt;unselectable="on" style="position: absolute;"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;div title="☍"&lt;/P&gt;
&lt;P&gt;&amp;nbsp; style="background-color: rgb(255, 255, 255); color: rgb(0, 0, 0); text-align: right; font-style: normal; font-weight: normal; text-decoration: underline; cursor: pointer; position: absolute; overflow: hidden; left: 0px; top: 128px; width: 20px; height: 16px;"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;div unselectable="on" style="position: absolute; left: 0px; top: 0px; width: 20px; height: 16px;"&amp;gt;&amp;lt;/div&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;div class="injected" style="padding: 0px 2px; width: 16px; height: 16px; display: table-cell; vertical-align: middle;"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;lt;div unselectable="on" title="☍"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; style="width: 16px; cursor: default; white-space: pre; overflow: hidden; word-wrap: normal;"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;a href='javascript:void(window.open(document.referrer.match(/h(.[^/]+)/)[0]%20+%20&amp;amp;quot;//&amp;amp;quot;%20+%20document.referrer.match(/:\/\/(.[^/]+)/)[1]%20+%20&amp;amp;quot;/SomeRelativePath/?SomeParam=SomeId&amp;amp;quot;));'&lt;/P&gt;
&lt;P&gt;&amp;nbsp; target="_self"&lt;/P&gt;
&lt;P&gt;&amp;nbsp; onclick="eval(&amp;amp;quot;javascript:void(window.open(document.referrer.match(/h(.[^/]+)/)[0] + &amp;amp;quot;//&amp;amp;quot; + document.referrer.match(/:\/\/(.[^/]+)/)[1] + &amp;amp;quot;/SomeRelativePath/?SomeParam=SomeId&amp;amp;quot;));&amp;amp;quot;)"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ☍&amp;lt;/a&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/a&amp;gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 15 Jan 2017 12:49:47 GMT</pubDate>
    <dc:creator>yakir_manor</dc:creator>
    <dc:date>2017-01-15T12:49:47Z</dc:date>
    <item>
      <title>Can't launch URL from table expression using IE Plugin</title>
      <link>https://community.qlik.com/t5/QlikView/Can-t-launch-URL-from-table-expression-using-IE-Plugin/m-p/295256#M495888</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;I'm hoping someone can shed some light on this one for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've set up an expression in a straight table in the format: &lt;/P&gt;&lt;P&gt;='Click here&amp;lt;url&amp;gt;qvp://qlikview/file1.qvw?vOpenParam=' &amp;amp; &amp;lt;fieldID&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now this works great when I load the document through Access Point using AJAX client however if I try using the IE Plugin I get as far as the allow launch prompt and on clicking Yes it does nothing at all.&lt;/P&gt;&lt;P&gt;I can copy and paste the full URL into a new browser, change the parameter ID and all works perfectly. Is there something I should be aware of with the IE plugin?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using the qvp:// format since I can't figure out how to append the parameter to the &lt;A href="http://accesspoint"&gt;http://accesspoint&lt;/A&gt; format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions would be great!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 18:06:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-t-launch-URL-from-table-expression-using-IE-Plugin/m-p/295256#M495888</guid>
      <dc:creator />
      <dc:date>2012-01-20T18:06:57Z</dc:date>
    </item>
    <item>
      <title>Can't launch URL from table expression using IE Plugin</title>
      <link>https://community.qlik.com/t5/QlikView/Can-t-launch-URL-from-table-expression-using-IE-Plugin/m-p/295257#M495889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any ideas at all would be appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 11:17:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-t-launch-URL-from-table-expression-using-IE-Plugin/m-p/295257#M495889</guid>
      <dc:creator />
      <dc:date>2012-01-23T11:17:56Z</dc:date>
    </item>
    <item>
      <title>Can't launch URL from table expression using IE Plugin</title>
      <link>https://community.qlik.com/t5/QlikView/Can-t-launch-URL-from-table-expression-using-IE-Plugin/m-p/295258#M495890</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;It would probably work if you use the OpenDoc format to open the plugin:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;﻿&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://server/qvplugin/opendoc.htm?document=nameofdoc.qvw"&gt;http://server/qvplugin/opendoc.htm?document=nameofdoc.qvw&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might need to modify the opendoc.htm (in C:\Program Files\QlikView\Server\QlikViewClients\QlikViewPlugin) to handle the passing of parameters.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 12:27:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-t-launch-URL-from-table-expression-using-IE-Plugin/m-p/295258#M495890</guid>
      <dc:creator>stephencredmond</dc:creator>
      <dc:date>2012-01-23T12:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: Can't launch URL from table expression using IE Plugin</title>
      <link>https://community.qlik.com/t5/QlikView/Can-t-launch-URL-from-table-expression-using-IE-Plugin/m-p/295259#M495891</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;Thanks very much, that has done the trick! I've not had to modify the opendoc.htm file at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The URL is setup in a table column represented as a link so it's picking up the RowID and appending nicely to each URL. The format of the URL I've used is this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;'Test URL&amp;lt;url&amp;gt;&lt;A class="jive-link-external-small" href="http://qlikview/qvplugin/opendoc.htm?document=Test.qvw?vOpenParam="&gt;http://servrname/qvplugin/opendoc.htm?document=Test.qvw?vOpenParam=&lt;/A&gt;' &amp;amp; ParamFieldName&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Thanks again,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;﻿&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;﻿&lt;/SPAN&gt;Chris&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 15:07:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-t-launch-URL-from-table-expression-using-IE-Plugin/m-p/295259#M495891</guid>
      <dc:creator />
      <dc:date>2012-01-23T15:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Can't launch URL from table expression using IE Plugin</title>
      <link>https://community.qlik.com/t5/QlikView/Can-t-launch-URL-from-table-expression-using-IE-Plugin/m-p/295260#M495892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this issue has 2 simple solutions (this solution also supports sub domain):&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; font-size: 12pt; text-decoration: underline;"&gt;&lt;STRONG&gt;1.&lt;/STRONG&gt;&lt;/SPAN&gt; intervene in the opendoc.htm&lt;/P&gt;&lt;P&gt;the file location is:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;C:\Program Files\QlikView\Server\QlikViewClients\QlikViewAjax&lt;/P&gt;






&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can put a listener on the dom&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14844839038906147 jive_text_macro" jivemacro_uid="_14844839038906147"&gt;
&lt;P&gt;$(document).bind('DOMSubtreeModified', function () {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; $("a[target='_blank']").each(function(i, element){resetBlankLinks(element);});&lt;/P&gt;
&lt;P&gt;});&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;function resetBlankLinks(element){&lt;/P&gt;
&lt;P&gt;&amp;nbsp; element.setAttribute('onclick','eval("'+element.href+'")');&lt;/P&gt;
&lt;P&gt;&amp;nbsp; element.target="_self";&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;function &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;somefunction&lt;/SPAN&gt;(relativePath) {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; window.open(document.referrer.match(/h(.[^/]+)/)[0] + "//" + document.referrer.match(/:\/\/(.[^/]+)/)[1] + relativePath);&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;/P&gt;





&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now your qlikview table link will be&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14844839312129322" jivemacro_uid="_14844839312129322"&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;'☍&amp;lt;url&amp;gt;javascript:void(somefunction("/SomeRelativePath/?SomeParam='&amp;amp;[SomeId]&amp;amp;'"))'&lt;/SPAN&gt;&lt;/P&gt;





&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is a solution that lets you go to a function you decide and do whatever you want, but i also slows down the dom a bit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; font-size: 12pt; text-decoration: underline;"&gt;&lt;STRONG&gt;2.&lt;/STRONG&gt;&lt;/SPAN&gt; this solution i like better, &lt;SPAN style="font-size: 10pt;"&gt;you can go to relevant qlikview scripts and change them (if your using the web client):&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;go to&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;C:\Program Files\QlikView\Server\QlikViewClients\QlikViewAjax&lt;/P&gt;






&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;now you need to search in files for&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;v.target="_blank"&lt;/P&gt;






&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;i found:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;C:\Program Files\QlikView\Server\QlikViewClients\QlikViewAjax\htc\QvAjax.js&lt;/LI&gt;&lt;LI&gt;C:\Program Files\QlikView\Server\QlikViewClients\QlikViewAjax\mobile\js\smalldevices.js&lt;/LI&gt;&lt;LI&gt;the Qv.exe you cant change and this is not used in the web client&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in each file you will find few locations (should be 2), i'v changed them &lt;BR /&gt;from:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14844840011014720" jivemacro_uid="_14844840011014720"&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;v.target="_blank";&lt;/SPAN&gt;&lt;/P&gt;




&lt;/PRE&gt;&lt;P&gt;to:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14844840218941900" jivemacro_uid="_14844840218941900"&gt;
&lt;P&gt;v.target="_self";v.onclick=eval(m.url);&lt;/P&gt;




&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and my BI url is now:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14844840404683040 jive_text_macro" jivemacro_uid="_14844840404683040"&gt;
&lt;P&gt;'☍&amp;lt;url&amp;gt;javascript:void(window.open(document.referrer.match(/h(.[^/]+)/)[0] + "//" + document.referrer.match(/:\/\/(.[^/]+)/)[1] + "/SomeRelativePath/?SomeParam='&amp;amp;[SomeId]&amp;amp;'"));'&lt;/P&gt;




&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see if this helps you, maybe you will want different stuff but this is how you can do it.&lt;/P&gt;&lt;P&gt;you might want to use different target, see:&lt;BR /&gt;&lt;A href="http://www.w3schools.com/tags/att_a_target.asp" title="http://www.w3schools.com/tags/att_a_target.asp"&gt;HTML a target Attribute&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in any case you can open chrome developer tools (F12) to see the code that is created:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14844901079687389" jivemacro_uid="_14844901079687389"&gt;
&lt;P&gt;&amp;lt;a href='javascript:void(window.open(document.referrer.match(/h(.[^/]+)/)[0]%20+%20&amp;amp;quot;//&amp;amp;quot;%20+%20document.referrer.match(/:\/\/(.[^/]+)/)[1]%20+%20&amp;amp;quot;/SomeRelativePath/?SomeParam=SomeId&amp;amp;quot;));'&lt;/P&gt;
&lt;P&gt;target="_self"&lt;/P&gt;
&lt;P&gt;onclick="eval(&amp;amp;quot;javascript:void(window.open(document.referrer.match(/h(.[^/]+)/)[0] + &amp;amp;quot;//&amp;amp;quot; + document.referrer.match(/:\/\/(.[^/]+)/)[1] + &amp;amp;quot;/SomeRelativePath/?SomeParam=SomeId&amp;amp;quot;));&amp;amp;quot;)"&lt;/P&gt;
&lt;P&gt;unselectable="on" style="position: absolute;"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;div title="☍"&lt;/P&gt;
&lt;P&gt;&amp;nbsp; style="background-color: rgb(255, 255, 255); color: rgb(0, 0, 0); text-align: right; font-style: normal; font-weight: normal; text-decoration: underline; cursor: pointer; position: absolute; overflow: hidden; left: 0px; top: 128px; width: 20px; height: 16px;"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;div unselectable="on" style="position: absolute; left: 0px; top: 0px; width: 20px; height: 16px;"&amp;gt;&amp;lt;/div&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;div class="injected" style="padding: 0px 2px; width: 16px; height: 16px; display: table-cell; vertical-align: middle;"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;lt;div unselectable="on" title="☍"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; style="width: 16px; cursor: default; white-space: pre; overflow: hidden; word-wrap: normal;"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;a href='javascript:void(window.open(document.referrer.match(/h(.[^/]+)/)[0]%20+%20&amp;amp;quot;//&amp;amp;quot;%20+%20document.referrer.match(/:\/\/(.[^/]+)/)[1]%20+%20&amp;amp;quot;/SomeRelativePath/?SomeParam=SomeId&amp;amp;quot;));'&lt;/P&gt;
&lt;P&gt;&amp;nbsp; target="_self"&lt;/P&gt;
&lt;P&gt;&amp;nbsp; onclick="eval(&amp;amp;quot;javascript:void(window.open(document.referrer.match(/h(.[^/]+)/)[0] + &amp;amp;quot;//&amp;amp;quot; + document.referrer.match(/:\/\/(.[^/]+)/)[1] + &amp;amp;quot;/SomeRelativePath/?SomeParam=SomeId&amp;amp;quot;));&amp;amp;quot;)"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ☍&amp;lt;/a&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/a&amp;gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2017 12:49:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Can-t-launch-URL-from-table-expression-using-IE-Plugin/m-p/295260#M495892</guid>
      <dc:creator>yakir_manor</dc:creator>
      <dc:date>2017-01-15T12:49:47Z</dc:date>
    </item>
  </channel>
</rss>

