I have a visual studio 2012 SharePoint Hosted app project where I am attempting to provision an app custom list and a custom display form. I have essentially copied a custom display form created in SharePoint Designer and replaced the list view web part with html and form fields. All is well except for the CreatedModifiedInfo control. It renders the CreatedModifiedVersionInfo template minus the version/dates/author/editor data.
The code is from Designer
<tr>
<td class="ms-toolbar" nowrap="nowrap">
<table>
<tr>
<td class="ms-descriptiontext" nowrap="nowrap">
<SharePoint:CreatedModifiedInfo ControlMode="Display" runat="server"/>
</td>
<td width="99%" class="ms-toolbar" nowrap="nowrap"><IMG SRC="/_layouts/15/images/blank.gif" width="1" height="18"/></td>
<td class="ms-toolbar" nowrap="nowrap" align="right">
<SharePoint:GoBackButton runat="server" ControlMode="Display" id="gobackbutton2"/>
</td>
</tr>
</table>
</td>
</tr>
What am I missing?
Thanks
Fred