0
問題很簡單,但是我現在無法自己回答。有沒有解決方案來阻止我的標籤從selectRadio/selectList /每當我使用動作區域消失?我需要使用它,因爲每當這些無線電值中的一個發生變化時都有必要的字段,但它破壞了我的設計,因爲它不僅會擦除我的「標籤」字段,而且還會將其位置移動到左側,左:0「。actionRegion讓我的標籤消失
<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>