function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
aqeel ahmadaqeel ahmad 

when a user edit the record of contact object and popup window is displayed?

NagendraNagendra (Salesforce Developers) 
Hi Aqeel,

Please find the sample code below.
<apex:outputField value="{!CustomObject__c.Contact1__c}" > 
<apex:inlineEditSupport showOnEdit="saveButton, cancelButton" 
hideOnEdit="editButton" event="ondblclick" 
changedStyleClass="myBoldClass" resetFunction="resetInlineEdit"/>
</apex:outputField>

Find the screen shot below.
User-added image

Hope it helps.

Best Regards,
Nagendra.P