Hi there,

Using the hash variable #userviewKey# is not displaying the Userview Key from the url when used in html page.

Forms that use the userviewKey to load are displaying the correct data, so the key is correct - I just can't get the hash variable to work.

Am I doing something incorrect?

Thanks.

4 Comments

  1. #requestParam.key# is the solution!

    Thanks Bastiana - you're the best!!!!

  2. Is there a way to add the userviewkey to the app url's on the Desktop Landing page?

    1. Couldn't find any way to add the userviewkeys to the app links on the desktop.  (It seems like something that should be possible? A setting in the user view properties?)  Anyway - resorted to Jquery:

       $(document).ready(function () {
          if(window.location.href.indexOf("GEN") > -1) {
            return;
          }else{
          var url = window.location.toString();
          window.location = url.replace('/general_n4//', '/general_n4/GEN/');
      }
      

      Where GEN is the userviewkey I wish to add to the url.