如何获取自定义字段的 RenderPattern 中的列值?
我正在尝试在自定义字段的标记中显示列的值。
要获取列值,我可以简单地使用:
<Column />
要获取另一列的值,我可以简单地使用:
<Column Name="InternalFieldName" />
我遇到的问题是我将感兴趣的列的名称存储在隐藏字段中。
我可以使用以下方法获取隐藏字段的值:
<Property Select="SomeColumnName" />
但是如何在列名称属性中使用该值。
我想做这样的事情:
<Column Name="<Property Select="SomeColumnName"/>" />
有什么想法吗???
谢谢,
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,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能必须创建
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.