here is my code for a output field. when the field is empty the button is rendered, when the field has value the clear button will show up and allow me to empty the field and render the button again. but I can't manage it to render the button again once the field is is cleared, can anybody suggest a fix?
<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>