English 中文(简体)
将父/母 ID 传送到视觉力页面的儿童记录
原标题:Passing parent id to child record in VisualForce page

我试图创建我的第一个 VF 页面。 这是一个行条目输入表, 允许用户在点击保存前输入多个子记录( Enfants @ em> c) 。 现在, 我将从父( Assure

//page    

<apex:page standardController="Enfants__c" extensions="insererEnfants" standardStylesheets="true">
<apex:sectionHeader title="Ajouter un enfant"
    subtitle="{!$User.FirstName}" help="/help/doc/user_ed.jsp?loc=help"></apex:sectionHeader>
<apex:form >
    <apex:pageBlock title="Nouveau enfant" id="thePageBlock" mode="edit">
        <apex:pageBlockButtons >
            <apex:commandButton action="{!save}" value="Enregistrer"></apex:commandButton>
            <apex:commandButton action="{!cancel}" value="   Annuler   "></apex:commandButton>
        </apex:pageBlockButtons>

        <apex:pageBlockTable value="{!accts}" var="a" id="table">
            <apex:facet name="footer">
                <apex:commandLink value="Ajouter" action="{!addRow}" rerender="table,error"/>
            </apex:facet>
            <apex:facet name="header">
                <apex:commandLink value="Supprimer" action="{!deleteRow}" rerender="table,error"/>
            </apex:facet>

            <apex:column headerValue="Nom">
                <apex:inputField/> value="{!a.Parent__c}"/>
            </apex:column>
            <apex:column headerValue="Nom">
                <apex:inputField value="{!a.Name}"/>
            </apex:column>
            <apex:column headerValue="Prénom">
                <apex:inputField value="{!a.Prenom__c}"/>
            </apex:column> 
                            <apex:column headerValue="Né le">
                <apex:inputField value="{!a.Date_de_naissance__c}"/>
            </apex:column>   
                            <apex:column headerValue="Lieu de naissance">
                <apex:inputField value="{!a.Lieu_de_naissance__c}"/>
            </apex:column>   
                            <apex:column headerValue="Situation">
                <apex:inputField value="{!a.Situation__c }"/>
            </apex:column>                          
        </apex:pageBlockTable>
        </apex:pageblock>
</apex:form>
</apex:page>


//Controller


public class insererEnfants{


public List<Enfants__c> accts {get; set;}


public insererEnfants(ApexPages.StandardController controller){
    accts = new List<Enfants__c>();
    accts.add(new Enfants__c();

}

public void addrow(){
    accts.add(new Enfants__c());       
}

public PageReference deleteRow(){
   if (accts.size()>1)
   {
      accts.remove(accts.size()-1);
   }
   return null;
}

public PageReference save()
{
    insert accts;
    Assure__c theParent = new Assure__c(id=accts[0].Parent__c);
    PageReference acctPage = new ApexPages.StandardController(theParent).view();
    acctPage.setRedirect(true);
    return acctPage;
}
}
最佳回答

首先,您没有提及父对象。 您可以用两种方式解决 :

<强力 > 解决方案1:

使用 URL 按钮传递父(父)的 ID, 其类似 URL 的 :

/apex/EnfantsPage?assureid={!Assure_c.Id}

将“ EnfantsPage” 替换为您 VF 页面的名称。 然后, 在控制器内 :

String assureid = ApexPages.currentPage().getParameters().get( assureid );

现在您知道父母的身份。 当您创建了一个新的孩子记录时, 请设定您已经通过了父代代号的值 。

public insererEnfants(ApexPages.StandardController controller){
  accts = new List<Enfants__c>();
  if (assureid <> null) {
    for (Assure__c assure: [ SELECT Id FROM Assure__c
                             WHERE Id = :assureid] ) {
    accts.add(new Enfants__c( Parent__c = assure.Id ));
  } else {
    accts.add(new Enfants__c());  
  }
}

public void addrow(){
  if (assure.Id <> null) {
    accts.add(new Enfants__c( Parent__c = assure.Id ));
  } else {
    accts.add(new Enfants__c());  
  }      
}

<强力 > 解决方案2:

延长孩子控制器, 延长父母 :

public Assure__c parent {get;}
public List<Enfants__c> accts {get; set;}
public insererEnfants(ApexPages.StandardController stdController) {
  this.parent = (Assure__c)stdcontroller.getRecord();
  accts.add(new Enfants__c( Parent__c = parent.id );
}

public void addrow(){
  accts.add(new Enfants__c( Parent__c = parent.id );
}
问题回答

暂无回答




相关问题
Salesforce - Populate text are from drop down selection

I have a picklist with three values and a text area that has three values as well, but I would like to correlate one value from the picklist with one value of the text area. Any thoughts as on how I ...

Setting Timeout value for Salesforce Web Service/API

The API for Salesforce is a web service, you set it up by downloading a WSDL file from Salesforce and adding the WSDL to your .NET project. But I can t find anywhere to set the Timeout value. ...

Salesforce Custom Objects

Hi I am trying to create a Custom Object in Salesforce.com Developer Edition, because I would then like to use this Custom Object in a New Custom Tab say "Properties". Properties tab will contain ...

热门标签