Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

noInteraction in Mashup

Hi community,

i have this line of code in my mashup

<div id="QV02" opt=nointeraction style="position: absolute; top: 50px; left: 320px; width: 400px; height: 200px;" class="qvobject"></div>

but i can still interact with this chart on the webpage and in preview.

where is my fault, hope u can help

-Eric

21 Replies
rbecher
MVP
MVP

Eric,

not in HTML, just place my JavaScript code snipped at the end in your mashup.js after app.getObject():

app.getObject('QV02','SQzYvHD', {"noInteraction": true});

$('#QV02').click(function () {

            alert("Hello my dear!");

        });

- Ralf

Astrato.io Head of R&D
Not applicable
Author

Hi Ralf,

tried this at first but didn't worked.now i did it again and it worked.

Maybe I just failed again.

But thx once again

Not applicable
Author

I am using mashup. I want to embed it in html page and give it to 3 users to see it. If one user changes the charts based on what he wants to see, the other users will also see the changed charts?

rbecher
MVP
MVP

This will not work. Every user has its own web session..

Astrato.io Head of R&D
Not applicable
Author

What should I do in my case?

rbecher
MVP
MVP

As far as I know there is no session sharing (collaboration) like in QlikView yet. So, you need to build something but I don't know how..

Astrato.io Head of R&D
Not applicable
Author

This video gave me the idea that many users can see it without any of the users selection affecting rest of the users.

Qlik Sense - Introduction to Integration and Mash-Ups Part 1 - YouTube

rbecher
MVP
MVP

Yes, every user does see his/her personal selection only..

Astrato.io Head of R&D
Not applicable
Author

So if one user selects somethings on the chart, the other user wont be affected?

rbecher
MVP
MVP

Yes, this is standard behavior.

Astrato.io Head of R&D