FieldRenderer - Get specific field name from different template sections
- by Zooking
Hi,
Is there a way to get a specific field name from a template with several sections to a FieldRenderer control?
F.ex. I have a template with the sections "Data" and "Data2", both have a single-text-field called "Text". Is there a way to make my FieldRenderer get the field "Text" in section "Data2"
It would be nice if one of the below suggestions worked:
<sc:FieldRenderer ID="test" runat="server" FieldName="Text" Section="Data2" />
<sc:FieldRenderer ID="test" runat="server" FieldName="Data2/Text" />
BR Larre