これが出力フィールドの私のコードです。フィールドが空の場合、ボタンがレンダリングされます。フィールドに値がある場合、クリアボタンが表示され、フィールドを空にしてボタンを再度レンダリングできます。しかし、フィールドがクリアされた後、ボタンを再度レンダリングするように管理することはできません。誰かが修正を提案できますか?
<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>