如何在内联VF页面中删除Case Owner字段的超链接



假设我有一个内联的VF页面

代码段

<apex:page>
    <apex:pageBlockTable value="{!tempList}" var="c" width="100%" columns="11">
    <apex:column value="{!c.OwnerId}" headerValue="Case Owner">
    </apex:column>
    </apex:pageBlocktable>
</apex:page>

从控制器中得到tempList(在Case上创建的列表)。

现在,在内联VF页面中,我想删除在我的页面中显示的案例所有者名称的超链接。

有什么想法吗?

 <apex:column value="{!c.Owner.Name}" headerValue="Case Owner" />

相关内容

  • 没有找到相关文章

最新更新