这是我的输出字段代码。当字段为空时呈现按钮,当字段具有值时,清除按钮将显示并允许我清空字段并再次呈现按钮。但是一旦清除该字段,我就无法管理它以再次呈现按钮,有人可以建议修复吗?
<apex:pageBlockSectionItem >
<apex:outputLabel value="Order:" for="callerorder"/>
<apex:outputPanel id="callerorder">
<apex:outputField value="{!newPhoneCallRecord.Order__c}" />
<apex:commandButton value="x" rendered="{!!ISBLANK(newPhoneCallRecord.Order__c)}" rerender="phoneRecordSection">
<apex:param name="orderRMV" value="" assignTo="{!newPhoneCallRecord.Order__c}"/>
</apex:commandButton>
</apex:outputPanel>