Skip to content

Instantly share code, notes, and snippets.

@nate-untiedt
nate-untiedt / qsiv.js
Last active December 17, 2015 21:00
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
nate-untiedt / wblGen.bat
Last active October 8, 2021 00:33
A simple batch file that automatically generates the wblfolder.wbl for your Qlik Sense visualization extension.
@echo off
REM wblGen.bat - v 1.0.0 - 2015-10-09
REM Description:
REM A simple batch file that automatically generates the wblfolder.wbl for your Qlik Sense visualization extension.
REM
REM Author: Nate Untiedt - Analytics8 - nuntiedt@analytics8.com
REM
REM Credit to: http://stackoverflow.com/a/8387078
setlocal EnableDelayedExpansion