0

假设我有一个内联 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(在案例上创建的列表)。

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

有什么想法吗 ?

4

1 回答 1

0
 <apex:column value="{!c.Owner.Name}" headerValue="Case Owner" />
于 2014-05-25T05:18:08.450 回答