0

我正在尝试根据从弹出窗口中选择的帐户将值加载到 VF 输入框中。

          <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> 

我需要从来自 Account 对象的自定义字段 linea__c 填充 linea。我可以查询以获取字段值。但我需要在选择帐户后立即发生。我该怎么做?

任何指针都会很棒...

谢谢

4

1 回答 1

1

您将需要 JavaScript 操作...事实上,您将在 Visualforce 组件参考中看到的大多数标签的属性action可能最好。rerender

还请查看本教程:http ://wiki.developerforce.com/index.php/Force.com_Tutorial:_An_Introduction_to_Visualforce ,尤其是“教程:快速 Web 应用程序”上方的部分。类似的事情(重组形成新的食谱:http: //developer.force.com/cookbook/recipe/using-ajax-in-a-visualforce-page

最后但并非最不重要 - Visualforce 开发人员指南文档 PDF 可能对您来说很有趣 - 关于“创建向导”的章节(PDF 中的第 98 页)将是一个很好的(但有点过于全面)示例。

于 2010-11-23T22:57:53.383 回答