• FFAA
  • NEWBIE
  • 0 Points
  • Member since 2013

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

When the page loads there will be an output text that is generated into an input field. I want that value to be submitted into salesforce. The content loads into the boxes, but it won't submit to the lead record. 

 

<body onload="XYZ()"> 
 </body>   
    <apex:form > 
    <br/><br/> 
    <apex:actionFunction name="lg" action="{!iTEST}" rerender="jsvalues">
    <apex:param name="lt" value="" assignTo="{!valueLt}"/>
    </apex:actionFunction>
        <apex:outputPanel id="jsvalues">
        <apex:outputText value="Value lt:{!valueLt}" /><br/>
         <input type="text" name="{!Lead.Lt__c}" value="{!valueLt}"/>
    </apex:outputPanel>
    </apex:form>
  </apex:define> 
  <html>
<body>
  • November 22, 2013
  • Like
  • 0

When the page loads there will be an output text that is generated into an input field. I want that value to be submitted into salesforce. The content loads into the boxes, but it won't submit to the lead record. 

 

<body onload="XYZ()"> 
 </body>   
    <apex:form > 
    <br/><br/> 
    <apex:actionFunction name="lg" action="{!iTEST}" rerender="jsvalues">
    <apex:param name="lt" value="" assignTo="{!valueLt}"/>
    </apex:actionFunction>
        <apex:outputPanel id="jsvalues">
        <apex:outputText value="Value lt:{!valueLt}" /><br/>
         <input type="text" name="{!Lead.Lt__c}" value="{!valueLt}"/>
    </apex:outputPanel>
    </apex:form>
  </apex:define> 
  <html>
<body>
  • November 22, 2013
  • Like
  • 0