首页 > 代码库 > SF :Salesforce中,reRender控件和rendered控件的使用
SF :Salesforce中,reRender控件和rendered控件的使用
reRender:
用途:局部刷新
这个属性的value值是组件的ID,可以是一个或多个ID,多个ID用‘,‘隔开。
rendered:
用途:可以控制一个控件是页面上是否能显示出来。
这个属性的value是一个Boolean值。如果是true,控件会在页面上显示,否则,不会在页面上显示。
reRender与rendered的联合使用:
不能在一个控件中,写reRender和rendered两个属性。要把控件显示不显示的控件放在局部刷新的控件里面。
eg:
<apex:form >
<apex:pageBlock title="Condition">
<apex:pageBlockSection columns="2">
<apex:outputPanel title="Account">
<apex:outputLabel value="http://www.mamicode.com/Account:"></apex:outputLabel>
<apex:selectList value="http://www.mamicode.com/{!optionAcc}" size="1" style="width:230px">
<apex:selectOptions value="http://www.mamicode.com/{!optionAccList}"></apex:selectOptions>
<apex:actionSupport event="onchange" action="{!searchAccOppList}" reRender="oppId, contentId"/>
</apex:selectList>
</apex:outputPanel>
<apex:outputpanel title="Opportunity" id="oppId">
<apex:outputLabel value="http://www.mamicode.com/Opportunity:"></apex:outputLabel>
<apex:selectList value="http://www.mamicode.com/{!optionOpp}" size="1" style="width:230px">
<apex:selectOptions value="http://www.mamicode.com/{!optionOppList}"></apex:selectOptions>
<apex:actionSupport event="onchange" action="{!searchOppContentList}" reRender="contentId"/>
</apex:selectList>
</apex:outputpanel>
</apex:pageBlockSection>
</apex:pageBlock>
<apex:outputPanel id="contentId">
<apex:pageBlock title="Content" rendered="{!showContentVersion}">
......
本文出自 “prodigal_k” 博客,请务必保留此出处http://919637235.blog.51cto.com/7344598/1529929