2010-04-27 128 views
2

在下面的页面中,Topic__c是一个单选列表选项列表。我的意图是让这个列表控制下面哪个输入字段可用。用户选择一个选项,onchange事件应该触发,并重新显示字段。在VisualForce中未触发的事件

<apex:inputField value="{!Call_Report__c.Topic__c}" id="topic" > 
      <apex:actionSupport event="onchange" reRender="tickerInput,sectorInput,bondInput"> 
      <apex:param name="topicSelection" value="{!Call_Report__c.Topic__c}" /> 
      </apex:actionSupport> 
</apex:inputField> 
<apex:inputField value="{!Call_Report__c.Tickers__c}" rendered="{!Call_Report__c.Topic__c='Issuer'}" id="tickerInput" /> 
<apex:inputField value="{!Call_Report__c.Sector__c}" rendered="{!Call_Report__c.Topic__c='Industry'}" id="sectorInput"/> 
<apex:inputField value="{!Call_Report__c.Security__c}" rendered="{!Call_Report__c.Topic__c='Specific Bond'}" id="bondInput" /> 

我在做什么明显错在这里? http://community.salesforce.com/t5/Visualforce-Development/Multi-select-picklist-not-firing-event-for-AJAX-refreshes/m-p/173572/highlight/false#M22119似乎暗示着什么,我做的是合理的......

回答

2

我敢肯定,你需要以比更高水平的<apex:outputPanel id="thePanel"> or an <apex:page id="thePage">

0

我同意级别重新呈现,等等。尝试将你的代码包装在outputPanel中并重新渲染。