Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

mashup. Setting no interaction for a qvobject. is it possible?

Hi Qlikers,

In a mashup, can one prevent user from selecting the chart's record? but allow hovering?

I have a line graph that I wish to do just that.

2 Replies
reddy-s
Master II
Master II

Hi Saw,

Try this:

Refer this to the div in which your chart has been rendered. For an example I have taken '#ID'

$('#ID').click(function (event){
  
event.stopPropagation();
  
// ... If you would like to through a pop up message
  
return false;
});

Not applicable
Author

hmm...i tried it. couldn't work.