Advertisement
clinenko

Untitled

Dec 16th, 2014
432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.79 KB | None | 0 0
  1. <apex:page showHeader="true" sidebar="false" standardController="Case" extensions="MagentoCaseView">
  2.     <apex:form>
  3.         <apex:sectionHeader title="Case" subtitle="{!Case.CaseNumber}" />
  4.         <apex:outputLink value="/customers/apex/MagentoCaseListView">Back to List</apex:outputLink>
  5.         <apex:pageBlock title="">
  6.             <apex:pageMessages />
  7.             <apex:pageBlockButtons location="top">
  8.                 <apex:commandButton action="{!Edit}" value="Edit" immediate="true"/>
  9.             </apex:pageBlockButtons>
  10.             <apex:pageBlockSection collapsible="false" columns="2">
  11.                 <apex:outputField value="{!Case.Magento_Contact_Reason__c}"/>
  12.                 <apex:outputField value="{!Case.Product__c}"/>
  13.                 <apex:outputField value="{!Case.Subject}"/>
  14.                 <apex:outputField value="{!Case.Status}"/>
  15.                 <apex:outputField value="{!Case.Description}"/>
  16.                 <apex:outputField value="{!Case.Version__c}"/>
  17.                 <apex:outputField value="{!Case.Steps_to_Reproduce__c}"/>
  18.                 <apex:outputField value="{!Case.Prod_Env__c}"/>
  19.                 <apex:outputField value="{!Case.Priority}"/>
  20.                 <apex:outputField value="{!Case.ParentId}"/>
  21.             </apex:pageBlockSection>
  22.         </apex:pageBlock>
  23.     </apex:form>
  24.         <!-- <apex:relatedList list="EmailMessages" subject="{!Case}"/> -->
  25.         <!-- <apex:relatedlist list="NotesandAttachments" subject="{!Case}"/> -->
  26.         <!-- <apex:relatedList list="CaseHistories" subject="{!Case}"/> -->
  27.         <!-- <apex:relatedList subject="{!case}" list="NotesAndAttachments"/> -->
  28.         <!-- <apex:relatedList list="CaseComment"/> -->
  29.         <!-- <apex:relatedList list="Articles"/> -->
  30.         <!-- <apex:relatedList subject="{!Case.Id}" list="Attachments"/> -->
  31.         <!-- <apex:relatedList list="Content"/> -->
  32.         <!-- <apex:relatedList list="CaseHistory"/> -->
  33.     <apex:relatedList list="CombinedAttachments" subject="{!case}"/>
  34.     <apex:relatedList list="CaseComment"/>
  35. </apex:page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement