开发者

How to get column value in a RenderPattern of a custom field?

开发者 https://www.devze.com 2023-03-29 07:53 出处:网络
I am trying to display the value of a column in thetag of my custom field. To get the column value, I can simply use:

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 som开发者_StackOverflowething like this:

<Column Name="<Property Select="SomeColumnName"/>" />

Any ideas????

Thanks,


You may have to create a custom field based on a calculated field in order to do this. There is no CAML syntax for what you required.

0

精彩评论

暂无评论...
验证码 换一张
取 消