Last active
August 29, 2015 14:04
-
-
Save samuelsharaf/44e281a725daf707a5bd to your computer and use it in GitHub Desktop.
Z4SF - LabExercise 1 - Create a simple Quote Page and Modify Title
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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