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
anjaanja 

trying to clone page/record to include visualforce addition

I have a custom object Test__c

 

I have a few custom fields as well that I put into a visualforce page to create a custom dropdown list. I then added the vf page to the object. What I am trying to do is to make a clone of this page to include the vf portion - the standard clone button does not clone the entire page w/ visualforce included:

 

**************************************************************************************************************************

 

 

<apex:page standardController="Test__c">
<style type="text/css"/>
  <apex:form >
    <apex:pageBlock title="Machine">
      
          <apex:commandButton value="Save" action="{!quickSave}" status="status"/>               <br></br>
          <p/>
          
          <h>Head 1: </h>
          <apex:inputField value="{!Test__c.test1__c}"/>
          <apex:inputField value="{!Test__c.TestA__c}"/>      
          <br></br>
          <p/>
      
          <h>Head 2: </h>
          <apex:inputField value="{!Test__c.test2__c}"/>
          <apex:inputField value="{!Test__c.TestB__c}"/>      
          <br></br>
          <p/> 
          
          <h>Head 3: </h>
          <apex:inputField value="{!Test__c.test2__c}"/>
          <apex:inputField value="{!Test__c.TestC__c}"/>      
          <br></br>
          <p/>
    
          </apex:pageBlock>
              
*************************************************************************************************************************** 
test pic
Is there a way to clone the entire thing?