I have two lists: Projects and Tasks
In the Tasks list, I have created a lookup field titled ProjectID which targets ID filed from the Projects list. Also, I have set for this field to display an additional field ProjectID: Title. So, when I view the tasks I see the values for the particular project ID and Title.
However, on the display form for the Tasks I can only see the ProjectID field. I've modified the display form to hide the default display web part and created a custom one in order to be able to customize the fields presentation. Now I have two problems:
ProjectIDfield is displaying the whole<a... />tag instead of just the value for the ID (which should act as a link to the related project item)- I can't find a way to display the
ProjectID:Titlefield at all. I tried:
<td width="400px" valign="top" class="ms-formbody">
<xsl:value-of select="@ProjectID_x003a_Title" />
</td>
but the field is just blank.
Is there a way to be able to show lookup additional field in the display form?
Thanks.