Page 1 of 1

Show ID on Display Form

Posted: 01 Dec 2014
by Adam Reyes
I can't seem to find any posts related to showing the ID of a submitted item on the Display form. I use a simple Rich Text control for the form and display something like Ticket # [ID] but that doesn't seem to work as when I go to the display form it's just blank. Is there another internal name I should be using to reference the ID field?

Re: Show ID on Display Form

Posted: 02 Dec 2014
by Dmitry Kozlov
Hi Adam,

Please, place 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 ID on Display Form

Posted: 02 Dec 2014
by Adam Reyes
That worked! Thanks so much!