Search code examples
kentico

Kentico form - Display/populate item ID


I have a Kentico form (bizform) and am able to display all the user's submissions using transformation like below. What I'm unable to display is the item ID value (line 2 in the code below). The field is Kentico-generated field / primary key. What I got is just the text "True" instead of the integer value of the field. It looks so simple, but looks like I missed something very basic. Thanks for help!

<td>{% FirstName %} {% LastName %} </td>

<td>{% demo_requestID %}</td>  

Solution

  • You should be able to use something like {% ToInt(demo_requestID) %}