Skip to content

Instantly share code, notes, and snippets.

@nate-untiedt
Last active December 17, 2015 21:00
Show Gist options
  • Save nate-untiedt/bb1664bf16aa27d0b6fb to your computer and use it in GitHub Desktop.
Save nate-untiedt/bb1664bf16aa27d0b6fb to your computer and use it in GitHub Desktop.
Bookmarklet that changes the mouseover title of sheet objects in Qlik Sense to their underlying object ID.
(function($){
$('[grid] div[qva-radial-context-menu]').each(function(index){
$(this).prop('title',$(this).attr("tid"));
});
})(jQuery);
@nate-untiedt
Copy link
Author

Usage:

  • Create a new bookmark and use this text as the url/location:
javascript:(function(){s=document.createElement('script');s.type='text/javascript';s.src='https://gist.githubusercontent.com/nate-untiedt/bb1664bf16aa27d0b6fb/raw/46c6c194b0549c38b490871dd1bf2dc0e992d335/qsiv.js?v='+parseInt(Math.random()*99999999);document.body.appendChild(s);})();
  • Navigate to the sheet where you want to determine object ID's.
  • Click on the bookmark you just made.
  • Mouse over the object (note that you will need to mouse over an area that isn't the Title/Subtitle).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment