Passing field selections in Qliksense Mashup through HTML URL
Problem:
When we try to embed an app sheet or object in IFRAME using Single configurator, we are able to pass the selection to Fileds by appending this "&select=<FieldName>,<FiledValue>" and the end of the generated URL. when we will be passing from our integrated host application. But when we try to do the same way in mashup we are unable to pass the selections like single configurator
Work Around:
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.
Step1:
Add the below mentioned a function in Mashup JS file you can parse the string in your Mashup URL
function GetURLParameter(sParam)
{
var sPageURL = window.location.search.substring(1);