Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Go to Setup in Salesforce.
  2. On the left-hand side of the Salesforce window, in the Quick Find field, type 'Visualforce Pages'.
  3. In the filtered list of items, click Visualforce PagesVisualforce Pages appears.
  4. At the top of the list of Visualforce pages, click New.
    A new Visualforce Page appears.

  5. Type the following information:

    FieldDescriptionExample
    LabelA label that identifies the page in Setup tools.Dial List From Custom Object
    NameThe unique name that identifies the page in the API. The name must contain only alphanumeric characters. For further restrictions on field contents, click Help for this Page.DialListFromCustomObject
    DescriptionAn optional description of the page.Code for a button that creates a Dial List from selected entries in a List View.


  6. In Visualforce Markup, paste the following code, replacing 'My_Custom_Object__c' with the API Name for your object:

    Code Block
    themeConfluence
    <apex:page standardController="My_Custom_Object__c" recordSetVar="listRecs" extensions="NVMConnectVCCConnect.ListFromListViewController" lightningStylesheets="true">
    <NVMConnect<VCCConnect:ListFromListView dataSource="{!me}" />
    </apex:page>

    Click Save. Your newly created page appears.

...