假设我有一个内联的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" />