我桌子的底部被切掉了,我不知道为什么。它是一个嵌入在页面布局中各部分之间的VF页面。
有什么想法/建议吗?
下面是代码。
<apex:pageBlock title="Support Tickets">
<apex:pageBlockTable value="{!Cases}" var="c">
<apex:column >
<apex:facet name="header">Support Ticket</apex:facet>
<apex:outputLink value="/{!c.id}">{!c.caseNumber}</apex:outputLink>
</apex:column>
<apex:column >
<apex:facet name="header">Subject</apex:facet>
<apex:outputLink value="/{!c.id}">{!c.subject}</apex:outputLink>
</apex:column>
<apex:column >
<apex:facet name="header">Created Date</apex:facet>{!c.createdDate}
</apex:column>
<apex:column >
<apex:facet name="header">Status</apex:facet>{!c.Status}
</apex:column>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:form>
</apex:page>发布于 2012-07-12 06:46:29
这个限制很可能是页面布局的实际高度。这可以在页面布局配置中更改,而不能在代码中更改。您的页面位于固定大小的IFrame中,该大小由页面布局本身控制,而不是由其中包含的页面决定。
转到:名称|设置|自定义|案例(假设您正在扩展案例对象)|页面布局|编辑。单击Visualforce Pages以显示自定义页面,然后单击右上角的扳手。

如果您没有看到这一点或无法访问Salesforce的这一部分,请与您的管理员联系以获得访问权限。
https://stackoverflow.com/questions/11441833
复制相似问题