Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Pass Query String from Web page to QV Dashboard and access the value

Hi Guys,

I am currently working on Qlik View integration with .Net Application and got stuck with passing the query string to the qlik view dashboard.

I have a ID filed which i am displaying in List box and trying to use the "Select" statement to pass the query string. While testing in the server we are able to filter with the ID field but while integrating in the web.config or code behind, the ID is not filtered.

Sample URL: http://myqlikview.qualcomm.com/QvAJAXZfc/AccessPoint.aspx?select=LB01,Value

LB01 is the ID of the list box and Value is the ID value which is our query string value.

Please try to help me out with the issue.

Thanks

Sai

5 Replies
Miguel_Angel_Baeyens

Hello Sai,

Is there any chance that the software is removing unsual chars like the "," from the URL? I assume that if you try hardconding the URL in the browser location bar it does work.

Hope that helps.

Miguel

Not applicable
Author

Thanks for the response Miguel.

I tried to encode the comma(%2C) and pass the value in the URL but the issue still exist.

The Value is not filtered based on the passed result.

The logic which i am using is to append the Try String(Published URL from the QlikView Server) with the value.

It looks like "http://xxx.com/QvAJAXZfc/opendoc.htm?document=Dashboard.qvw&select=LB01,Hotels"

LB01 is the ID of the List box and the value is Hotels.

I tried to pass http://xxx.com/QvAJAXZfc/opendoc.htm?document=Dashboard.qvw&select=LB01%2CHotels

I am decoding the URL and binding in the IFrame with above URL as my SRC.

But i couldnt get the issue resolved.

Please let me know if you have any thougths to share.

Thanks

Sai

Not applicable
Author

Hi,

Please post a sample if you find a solution to the above post.

Thanks,

Santosh Kumari

Not applicable
Author

Hi Maguel,

Did you get a chance to look into the issue mentioned in the above update?

Please let me know if you get a chance to look into it and provide me a sample.

Thanks

Sai

Not applicable
Author

Hi Santosh,

The issue is resolved for me. Use Response.Redirect(URL Path) instead of loading in the IFrame.

This will fix the issue and navigate to the required URL.

Thanks

Sai Krishna