我想在visualforce页面上显示报告。我找到了这段代码,但它带回了一个空白页面。我错过了什么,让它显示报告数据?
<apex:page showHeader="false" sidebar="false">
<apex:iframe src="/00OQ0000000Gdbm"/>
</apex:page>
答案 0 :(得分:-1)
我使用看起来像这样的代码在Visualforce页面中显示报告。我遗漏了可能妨碍的细节:
<apex:page standardController="CustomOb__c" extensions="CobjController">
<apex:sectionHeader title="Manage Stuff"/>
<apex:form>
...
<apex:outputPanel id="MissingAttRpt" >
<apex:iframe src="/00O0000000AAJlV?isdtp=lt" scrolling="true" height="1588px" width="100%"/>
</apex:outputPanel>
...
</apex:form>
</apex:page>
使用outputPanel,以便可以在不刷新整个页面的情况下重新呈现报表。
尝试删除showHeader和侧边栏属性。