• jmullins525
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies
I'm trying to build a VF page that will display and allow editing of existing quote line items.  So far I have this:
<apex:page standardController="Quote" showHeader="true" sidebar="false" >
<apex:form >
<apex:pageBlock title="Quote Line Items">
<apex:pageBlockTable value="{!Quote.QuoteLineItems}" var="item">
<apex:column value="{! item.part__c}"/>
<apex:inputField value="{!item.Proposed_Direct_Customer_Price__c}"/>
<apex:commandButton action="{!save}" value="Save!"/>
</apex:pageblocktable>
</apex:pageblock>
</apex:form>
</apex:page>

- The save button and proposed direct customer price do not appear on the page but the part__c read only field does appear for each line item. What am I doing wrong?