Ich versuche, Werte in das VF-Eingabefeld basierend auf dem aus Popup ausgewählten Konto zu laden.Visual Force-Seitenhilfe
<apex:pageBlockSectionItem id="pageblocksectionitem5">
<apex:outputLabel value="Account Name"></apex:outputLabel>
<apex:panelGroup style="border: 0px solid Blue;" >
<apex:outputPanel layout="inline" style="background-color:#CC0000; padding-left: 3px; position: absolute; margin-left: 0px; margin-top: 2px; margin-right: 0px; height: 20px; border: 0px Red; " ></apex:outputPanel>
<input type="text" name="AccountName" id="Input12" style="margin-left: 5px; " /><img src="/s.gif" class="lookupIcon" onClick='window.open("/apex/xyz,"width=600,height=400,left=150,top=200,toolbar=1,status =1,");'/>
</apex:panelGroup>
</apex:pageBlockSectionItem>
<apex:pageBlockSectionItem id="pageblocksectionitem3">
<apex:outputLabel value="Linea"></apex:outputLabel>
<apex:outputLabel value="{!linea}"></apex:outputLabel>
</apex:pageBlockSectionItem>
Ich brauche linea aus dem benutzerdefinierten Feld linea__c zu füllen, die von Konto-Objekt ist .. kann ich abfragen, um den Feldwert zu erhalten. Aber ich brauche es sofort nach der Auswahl des Accounts. Wie kann ich es tun?
Alle Zeiger wäre toll ...
Dank