Skip to main content

Search

Other - Dynamic Link to list items

Comments

2 comments

  • ArdeviaForum

    Original Post by Vitaliy Zadorozhnyy (Imported from Ardevia Forum)

    Hi Mary,
    Just open edit/display form of some created item and copy url to Send Mail action you have added after Save Form action.
    Your url could look like this:?

    Code:

    https://<site collection>/_layouts/15/start.aspx#/Lists/<ListName>/EditForm.aspx?ID=1&Source=...
    

     

    In this url just replace specific ID query string parameter with placeholder [[ID]] which will be evaluated to Id of newly created item and remove other parameters of not needed. So your url could look like this:

     

    Code:

    https://<site collection>/_layouts/15/start.aspx#/Lists/<ListName>/EditForm.aspx?ID=[[ID]
    

     

    To make like link in email use anchor html tag. The result link could look like this:

    Code:

    <a href="https://<site collection>/_layouts/15/start.aspx#/Lists/<ListName>/EditForm.aspx?ID=
    [[ID]]">Created Item</a>
    

    Hope this helps.

    0
  • ArdeviaForum

    Original Post by maryb (Imported from Ardevia Forum)

    Hi Vitaliy,

     

    Many thanks - now able to send email On Save that links to current item.

    0

Please sign in to leave a comment.