Skip to content

Instantly share code, notes, and snippets.

@samuelsharaf
Last active August 29, 2015 14:04
Show Gist options
  • Save samuelsharaf/44e281a725daf707a5bd to your computer and use it in GitHub Desktop.
Save samuelsharaf/44e281a725daf707a5bd to your computer and use it in GitHub Desktop.
Z4SF - LabExercise 1 - Create a simple Quote Page and Modify Title
<apex:page standardController="zqu__Quote__c" tabStyle="zqu__Quote__c" sidebar="false">
<apex:composition template="zqu__QuoteWizardTemplateNoForm">
<apex:define name="PageBody">
<zqu:CreateQuote subscriptionId="{!$CurrentPage.parameters.subscriptionId}"
billingAccountId="{!$CurrentPage.parameters.billingAccountId}"
opportunityId="{!$CurrentPage.parameters.oppId}"
crmAccountId="{!$CurrentPage.parameters.crmAccountId}"
renderBackButton="true"
title="MyTitle-Change this for lab exercise"/>
</apex:define>
</apex:composition>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment