<?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>article Passing field selections in Qliksense Mashup through HTML URL in Qlik Sense Documents</title>
    <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Passing-field-selections-in-Qliksense-Mashup-through-HTML-URL/ta-p/1488161</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Problem&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;When we try to embed an app sheet or object in IFRAME using &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Single configurator, &lt;/SPAN&gt;we are able to pass the selection to Fileds by appending this&amp;nbsp;&amp;nbsp; "&amp;amp;select=&amp;lt;FieldName&amp;gt;,&amp;lt;FiledValue&amp;gt;" &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;and the end of the generated URL. when we will be passing from our integrated host application. But when&lt;/SPAN&gt; we try to do &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;the same way in m&lt;/SPAN&gt;ashup we are unable to pass the selections like single configurator&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Work Around&lt;/STRONG&gt;:&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;So as work around solution we tried to parse the URL and take the parameters from URL and assign it to selections in the Mashup JS file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Step1:&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Add the below mentioned a function in Mashup JS file you can parse the string in your Mashup URL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;function GetURLParameter(sParam)&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;{&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var sPageURL = window.location.search.substring(1);&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var sURLVariables = sPageURL.split('&amp;amp;');&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (var i = 0; i &amp;lt; sURLVariables.length; i++)&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var sParameterName = sURLVariables&lt;I&gt;.split('=');&lt;/I&gt;&lt;/EM&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (sParameterName[0] == sParam)&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return sParameterName[1];&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;}&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Ref: &lt;A class="jive-link-external-small" href="http://www.jquerybyexample.net/2012/06/get-url-parameters-using-jquery.html" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #3778c7;" target="_blank"&gt;Get URL Parameters using jQuery&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; jQuery By Example&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Step 2:&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Assign the parsed values to a variable using this function&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;var v&lt;/EM&gt;&lt;/SPAN&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;FieldName&lt;/EM&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;= GetURLParameter('State');&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Step 3:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Apply the variable to the Qlik selection&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;app.field("&amp;lt;FieldName&amp;gt;").selectMatch(vFieldName, false);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Sample Mashup URL Format : &lt;A class="jive-link-external-small" href="http://localhost:4848/extensions/odp-test/odp-test.html?State=Alaska" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #3778c7;" target="_blank"&gt;http://localhost:4848/extensions/mashup-test/mashup-test.html?&amp;lt;FieldName&amp;gt;=&amp;lt;FieldValue&amp;gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;In case of multiple fields repeat the above step 2,3 again.&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;P.S. If there is any other better option to pass the selections to the Mashup URL, Please share.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Thanks,&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Lakshmikandh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Sep 2016 11:57:54 GMT</pubDate>
    <dc:creator>lakshmikandh</dc:creator>
    <dc:date>2016-09-26T11:57:54Z</dc:date>
    <item>
      <title>Passing field selections in Qliksense Mashup through HTML URL</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Passing-field-selections-in-Qliksense-Mashup-through-HTML-URL/ta-p/1488161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Problem&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;When we try to embed an app sheet or object in IFRAME using &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Single configurator, &lt;/SPAN&gt;we are able to pass the selection to Fileds by appending this&amp;nbsp;&amp;nbsp; "&amp;amp;select=&amp;lt;FieldName&amp;gt;,&amp;lt;FiledValue&amp;gt;" &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;and the end of the generated URL. when we will be passing from our integrated host application. But when&lt;/SPAN&gt; we try to do &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;the same way in m&lt;/SPAN&gt;ashup we are unable to pass the selections like single configurator&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Work Around&lt;/STRONG&gt;:&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;So as work around solution we tried to parse the URL and take the parameters from URL and assign it to selections in the Mashup JS file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Step1:&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Add the below mentioned a function in Mashup JS file you can parse the string in your Mashup URL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;function GetURLParameter(sParam)&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;{&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var sPageURL = window.location.search.substring(1);&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var sURLVariables = sPageURL.split('&amp;amp;');&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (var i = 0; i &amp;lt; sURLVariables.length; i++)&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var sParameterName = sURLVariables&lt;I&gt;.split('=');&lt;/I&gt;&lt;/EM&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (sParameterName[0] == sParam)&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return sParameterName[1];&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;}&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Ref: &lt;A class="jive-link-external-small" href="http://www.jquerybyexample.net/2012/06/get-url-parameters-using-jquery.html" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #3778c7;" target="_blank"&gt;Get URL Parameters using jQuery&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; jQuery By Example&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Step 2:&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Assign the parsed values to a variable using this function&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;var v&lt;/EM&gt;&lt;/SPAN&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;FieldName&lt;/EM&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;= GetURLParameter('State');&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Step 3:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Apply the variable to the Qlik selection&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;EM style="font-weight: inherit; font-size: 13.3333px; font-family: inherit;"&gt;app.field("&amp;lt;FieldName&amp;gt;").selectMatch(vFieldName, false);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Sample Mashup URL Format : &lt;A class="jive-link-external-small" href="http://localhost:4848/extensions/odp-test/odp-test.html?State=Alaska" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #3778c7;" target="_blank"&gt;http://localhost:4848/extensions/mashup-test/mashup-test.html?&amp;lt;FieldName&amp;gt;=&amp;lt;FieldValue&amp;gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;In case of multiple fields repeat the above step 2,3 again.&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;P.S. If there is any other better option to pass the selections to the Mashup URL, Please share.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Thanks,&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: Helvetica, Arial, sans-serif; color: #666666;"&gt;Lakshmikandh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 11:57:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Passing-field-selections-in-Qliksense-Mashup-through-HTML-URL/ta-p/1488161</guid>
      <dc:creator>lakshmikandh</dc:creator>
      <dc:date>2016-09-26T11:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Passing field selections in Qliksense Mashup through HTML URL</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Passing-field-selections-in-Qliksense-Mashup-through-HTML-URL/tac-p/1542849#M3648</link>
      <description>&lt;P&gt;I added above function&amp;nbsp;&lt;EM&gt;GetURLParameter,in my mashup.js file.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Where exactly we need to add the script foo calling&amp;nbsp;&lt;SPAN&gt;GetURLParameter function&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;i.e. below code&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;var v&lt;/SPAN&gt;FieldName&lt;SPAN&gt;= GetURLParameter('State');&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;if i add in mashup.js my dashboard data is missing and i cant see any data in the mashup objects&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;Do you have any working sample,kindly help&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 09:57:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Passing-field-selections-in-Qliksense-Mashup-through-HTML-URL/tac-p/1542849#M3648</guid>
      <dc:creator>srilakshmi_as</dc:creator>
      <dc:date>2019-02-12T09:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: Passing field selections in Qliksense Mashup through HTML URL</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Passing-field-selections-in-Qliksense-Mashup-through-HTML-URL/tac-p/1542851#M3649</link>
      <description>&lt;P&gt;I added above function&amp;nbsp;&lt;EM&gt;GetURLParameter,in my mashup.js file.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Where exactly we need to add the script for calling&amp;nbsp;&lt;SPAN&gt;GetURLParameter function&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;i.e. below code&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;var name&lt;/SPAN&gt;&lt;SPAN&gt;= GetURLParameter('State');&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;if i add in mashup.js my dashboard data is missing and i cannot see any data in the mashup objects&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;Do you have any working sample,kindly help&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 09:59:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Passing-field-selections-in-Qliksense-Mashup-through-HTML-URL/tac-p/1542851#M3649</guid>
      <dc:creator>srilakshmi_as</dc:creator>
      <dc:date>2019-02-12T09:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Passing field selections in Qliksense Mashup through HTML URL</title>
      <link>https://community.qlik.com/t5/Qlik-Sense-Documents/Passing-field-selections-in-Qliksense-Mashup-through-HTML-URL/tac-p/1780556#M4599</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/1195"&gt;@srilakshmi_as&lt;/a&gt;&amp;nbsp;, I am also having the same requirement, please help how did you resolve this.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2021 14:57:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Sense-Documents/Passing-field-selections-in-Qliksense-Mashup-through-HTML-URL/tac-p/1780556#M4599</guid>
      <dc:creator>Qlik1_User1</dc:creator>
      <dc:date>2021-02-05T14:57:31Z</dc:date>
    </item>
  </channel>
</rss>

