Custom selection nav buttons


/ Published in: jQuery
Save to your folder(s)

This is to create custom navigation buttons for Qlik Sense


Copy this code and paste it in your HTML
  1. $( "#clearall_button" ).click(function() {
  2. console.log('clear');
  3. app.clearAll();
  4. $("#myselections").html(selectionslist);
  5. });
  6.  
  7. $( "#forwardselect_button" ).click(function() {
  8. console.log('forward');
  9. app.forward();
  10.  
  11. });
  12.  
  13.  
  14. $( "#backselect_button" ).click(function() {
  15. console.log('back');
  16. app.back();
  17.  
  18. });
  19.  
  20.  
  21. $( "#lock_button" ).click(function() {
  22. console.log('lock');
  23. app.lockAll();
  24.  
  25. });
  26.  
  27.  
  28.  
  29. $( "#unlock_button" ).click(function() {
  30. console.log('unlock');
  31. app.unlockAll();
  32. });

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.