1
0
-1

I have a list with users and i want to hyperlink the email column to send an email, like <a href="mailto:someone@example.com >.

When I use hyperlink action i get an '?' between mailto: and the variable so it's not working.

 

 

Thanks

 

    CommentAdd your comment...

    1 answer

    1.  
      2
      1
      0

      Hi,

      Not sure if you can configure the hyperlink action directly, but if you can't, then you can also use some JavaScript or JQuery in a Custom HTML to decorate the columns e.g.

      <script>
      $(function() {
      $("td.column_email").html("<a href='mailto:" + $(".column_email").text() + "'>" + $(".column_email").text() + "</a>");
      });
      </script>
        CommentAdd your comment...