<apex:page showHeader="false" sidebar="false" standardController="PersonalEvaluation__c">
|
<apex:form >
|
<b>留言时的截图:</b>
|
<apex:outputField value="{!PersonalEvaluation__c.Graph1__c}" />
|
<b>留言一览:</b><br/>
|
<apex:outputPanel layout="none" rendered="{!ISBLANK(PersonalEvaluation__c.province__c)}">
|
<iframe id="tabComment" seamless="seamless" src="/apex/PersonalEvaluationCommentList?user={!PersonalEvaluation__c.OwnerId}&tab={!PersonalEvaluation__c.TabName__c}&rpt={!URLENCODE(PersonalEvaluation__c.ReportName__c)}" frameborder="0" allowtransparency="true" height="200" width="990"></iframe>
|
</apex:outputPanel>
|
<apex:outputPanel layout="none" rendered="{!NOT(ISBLANK(PersonalEvaluation__c.province__c))}">
|
<iframe id="tabComment" seamless="seamless" src="/apex/PersonalEvaluationCommentList?province={!PersonalEvaluation__c.province__c}&tab={!PersonalEvaluation__c.TabName__c}&rpt={!URLENCODE(PersonalEvaluation__c.ReportName__c)}" frameborder="0" allowtransparency="true" height="200" width="990"></iframe>
|
</apex:outputPanel>
|
</apex:form>
|
</apex:page>
|