• Nitish Bharadwaj B
  • NEWBIE
  • 0 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
I had 5 fields in my custom object(My custom object is apex_leave_approval__c),and i tried to insert details in the fields through Visual Force page and save the record.But if I try to do this process using a apex code in the Visual Force page I get only the id in the record of my custom object.Please help me with an answer

This is my code

<apex:page StandardController="apex_Leave_Approval__c" >

  <h1>Leave request App</h1>
  <br/><br/>

   <apex:image url="https://image.shutterstock.com/image-vector/creative-stylish-elegant-connected-industrial-260nw-648984286.jpg" />
  <apex:form id="NitishApp">
  <apex:pageBlock title="Enter the Details Below">
  
        <apex:pageBlockButtons >
        <apex:commandButton value="Save" action="{!save}" immediate="true"/>
        <apex:commandButton value="Cancel" action="{!Cancel}" />
        </apex:pageBlockButtons>
        
          
  <apex:pageBlockSection title="Enter the Details" columns="1">
             <apex:inputField id="Name"   value="{!apex_Leave_Approval__c.name}"  required="true"/>
              <apex:inputField id="ID" value="{!apex_Leave_Approval__c.apex_E_ID__c}" required="true"/>

             <apex:inputField id="Days_of_leave" value="{!apex_Leave_Approval__c.apex_Days_of_leave__c}" required="true"/>

             <apex:inputField id="Type_of_leave" value="{!apex_Leave_Approval__c.apex_Type_of_Leave__c}" required="true"/>

             <apex:inputField id="Approval" value="{!apex_Leave_Approval__c.apex_Approval__c}" required="true"/>
              
  
          </apex:pageBlockSection>
           </apex:pageBlock>
        
       
  </apex:form>

  
</apex:page>




With this code I could save only the Id but not the Actual message in the fields