I am trying to display the value of a column in the tag of my custom field.
To get the column value, I can simply use:
<Column />
To get the value of another column, I can simply use:
<Column Name="InternalFieldName" />
The problem I am having is that I have the name of the column that I am interested in stored in a hidden field.
I can get the value of my hidden field using:
<Property Select="SomeColumnName" />
But how do I use that value in the column name attribute.
I want to do something like this:
<Column Name="<Property Select="SomeColumnName"/>" />
Any ideas????
Thanks,