Shawn Keene

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • in reply to: Validate Multiple Line Text Field #28710
    Shawn Keene
    Participant

      It would have been a separate topic, but basically I was wanting to combine the autocomplete search but also prefill the search with a URL key value (if present). I ended up adding this to my custom JS. It fills the value into the search box and triggers “keyup” so the search suggestions show. In practice for us there’s only ever going to be 1 search result.

      setTimeout(function(){
          var theValue = GetUrlKeyValue("ClientVal");
          if(theValue!=="") {
          document.getElementById("spjs_ac_Title").value = theValue;
          spjs.ac.hideHelp("Title");
          $("#spjs_ac_Title").keyup();
          }
      },2500);
      • This reply was modified 4 years, 9 months ago by Shawn Keene.
      in reply to: Validate Multiple Line Text Field #28703
      Shawn Keene
      Participant

        Thanks so much for your answer and awesome detailed example. Really appreciate it.

        PS. I have another pending post (probably because I attached a file), but I resolved it. Once it’s moderation-approved I’ll reply to it with the solution I used.

        in reply to: Setup Another List #26335
        Shawn Keene
        Participant

          Thanks a ton!

          in reply to: Setup Another List #26329
          Shawn Keene
          Participant

            Literally answered my own question the instant after I saved this post. The answer is /SPJS/LocalInstallPage.aspx

            in reply to: Default Entry for People Picker Field #24690
            Shawn Keene
            Participant

              Thanks for the suggestions. I configured the rule but {currentUser:Email} autopouplates the list with an error that the Email field wasn’t found. Just {currentUser} seemed to work for most users, but I’m wondering what other fields are available beyond email?

            Viewing 5 posts - 1 through 5 (of 5 total)