actionRegion使我的标签消失

actionRegion使我的标签消失,action,visualforce,Action,Visualforce,这个问题很简单,但我至今无法自己回答。是否有任何解决方案可以阻止我每次使用action region时标签从selectRadio/selectList/中消失?我需要使用它,因为每当这些单选值中的一个被更改时,都有必需的字段,但它破坏了我的设计,因为它不仅删除了我的“标签”字段,而且还将其位置向左移动,就像“左边距:0” 税款与成本同时支付吗? 是否可以尝试包装输出面板,并在更改时呈现面板 <apex:pageBlockSection id="Info"

这个问题很简单,但我至今无法自己回答。是否有任何解决方案可以阻止我每次使用action region时标签从selectRadio/selectList/中消失?我需要使用它,因为每当这些单选值中的一个被更改时,都有必需的字段,但它破坏了我的设计,因为它不仅删除了我的“标签”字段,而且还将其位置向左移动,就像“左边距:0”


税款与成本同时支付吗?

是否可以尝试包装输出面板,并在更改时呈现面板

               <apex:pageBlockSection id="Info" title="Some Information" columns="2">
               <apex:actionRegion >
                   <apex:selectRadio id="taxType" label="Why does this disappear?" value="{!answer}">
                       <apex:selectOptions value="{!itemsAnswer}"/>
                       <apex:actionSupport event="onchange" rerender="Info" status="status"/>
                   </apex:selectRadio>                       
               </apex:actionRegion>
               <apex:outputLabel >Is the Tax paid at the same time as the Cost?</apex:outputLabel>
               </apex:pageBlockSection>