Page 1 of 1

Show SharepointID

Posted: 10 Apr 2018
by dominique.beaudin
Hello,
I would like to show the Sharepoint list item "ID" as a read only field on my form (for technical troubleshooting flows etc related to the list). I tried using the '{CurrentItem}' to see if that would do it, but that isn't working. I know this might not be possible since it's an internal identifier, but any advice would be appreciated.

thank you!

Re: Show SharepointID

Posted: 10 Apr 2018
by Nikita Kurguzov
Dear Dominique,
It's not a read-only field, but you should be able to display ID on the Edit/Display Form if you place an HTML-control onto your form, switch its CDATA property to False and put the following code into the Content property:

Code: Select all

<xsl:value-of select="@ID" />

Re: Show SharepointID

Posted: 10 Apr 2018
by dominique.beaudin
Thank you!!