• venkatesh yadav
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies

hi

i want two buttons one standard update

2)controllerextensionupdate

<apex:page standardController="ControlerETO__c" recordSetVar="ControlerETO" >
    <apex:form >
   <apex:dataTable value="{!ControlerETO}" var="individualrecords">
   <apex:column headerValue="first object">
   <apex:inputField value="{!individualrecords.Name}"/>
   </apex:column>
   <apex:column headerValue="second object">
   <apex:inputField value="{!individualrecords.Description__c}"/>
   </apex:column>
   <apex:column headerValue="third object">
   <apex:inputField value="{!individualrecords.Numbaer__c}"/>
   </apex:column>
   </apex:dataTable>
   <apex:pageBlock >
   <apex:commandButton value="standard update" action="{!standardupdate}"/>
   <apex:commandButton action="{!Controlerextensionupdate}" value="Controlerextensionupdate"/>
   </apex:pageBlock>
    
    </apex:form>
 
</apex:page>

 

 

this my code but its not accepting it showing two errors standard controller nd controller extension how can i get tht two buttons

hi

i want two buttons one standard update

2)controllerextensionupdate

<apex:page standardController="ControlerETO__c" recordSetVar="ControlerETO" >
    <apex:form >
   <apex:dataTable value="{!ControlerETO}" var="individualrecords">
   <apex:column headerValue="first object">
   <apex:inputField value="{!individualrecords.Name}"/>
   </apex:column>
   <apex:column headerValue="second object">
   <apex:inputField value="{!individualrecords.Description__c}"/>
   </apex:column>
   <apex:column headerValue="third object">
   <apex:inputField value="{!individualrecords.Numbaer__c}"/>
   </apex:column>
   </apex:dataTable>
   <apex:pageBlock >
   <apex:commandButton value="standard update" action="{!standardupdate}"/>
   <apex:commandButton action="{!Controlerextensionupdate}" value="Controlerextensionupdate"/>
   </apex:pageBlock>
    
    </apex:form>
 
</apex:page>

 

 

this my code but its not accepting it showing two errors standard controller nd controller extension how can i get tht two buttons