假设我有一个内联 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 页面中,我想删除显示在我的页面中的案例所有者名称的超链接。
有什么想法吗 ?