I have a standard field called Product Brief Number ({!Product_Brief__c.Name}). This field is Auto Number, after saving it will generate a number. I want show this field when some after click on the save button. Otherwise my page will break.
<apex:outputText value="{!Product_Brief__c.Name}"></apex:outputText> <apex:pageblockButtons > <apex:commandButton value="Save" action="{!save}"/> <apex:commandButton value="Print" onclick="window.print();"/> <apex:commandButton value="Cancel" action="{!Cancel}"/> </apex:pageblockButtons> Any one have any suggestions How to do that? Thanks