Advertisement
Guest User

Untitled

a guest
Sep 16th, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <apex:page standardController="Case" >
  2.  
  3. <apex:form >
  4. <apex:pageBlock title="Update Asset Firmware" mode="edit">
  5.  
  6. <apex:pageBlockButtons >
  7. <apex:commandButton value="Save" action="{!save}"/>
  8. <apex:commandButton value="Cancel" action="{!cancel}"/>
  9. </apex:pageBlockButtons>
  10.  
  11. <apex:pageBlockSection columns="1">
  12. <apex:outputField value="{!case.AssetId}"/>
  13. <apex:inputField value="{!case.Asset.FW_version__c}"/>
  14. <apex:inputField value="{!case.Asset.FW_Confirmed_Date__c}"/>
  15. </apex:pageBlockSection>
  16.  
  17. </apex:pageBlock>
  18. </apex:form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement