Using Microsoft share links in calculation fields

Comments

4 comments

  • Official comment
    Sumedha Panwar

    Hi all,


    We made a fix a little while back for this and the Sharepoint URLs should now be seen as expected without any emojis

    Thankyou for your feedback!


    Sumedha

    Product manager - Podio 

    Comment actions Permalink
  • Rainer Grabowski

    Hello Jasha,

    you can try to encode the colons. Replace the 2 colons with %3A
    %3Ax%3A

    Rainer

    0
    Comment actions Permalink
  • Jasha

    Hi Rainer,

    Thanks for that idea.

    I'm not sure if that would work for some of the less tech savvy users in our organisation. Also, it would be super time consuming given the number of links we create and add.

    Aside from using some sort of link shortening tool, is there another way to handle this within Podio?

    Thank you! 

     

    0
    Comment actions Permalink
  • Rainer Grabowski

    You can try something like this:

    var url = @text field with url.split("//");
    var url1 = url[0];
    var url2 = String(url[1]).replace(/:/g,"%3A");
    var url = url[0] + "//" + url2;
    url

    Not sure if that returns a valid MS share URL.

    Rainer

    0
    Comment actions Permalink

Please sign in to leave a comment.

Powered by Zendesk