For the complete documentation index, see llms.txt. This page is also available as Markdown.

Layout with autocomplete

Paste into Record Layout of GM - Record Layout, GM - Record Layout (LWC) or GM - Enhanced Record Layout. See Record Layout (LWC).

{
   "sections": [
      {
         "name": "contactInformation",
         "label": "Contact Information",
         "active": true,
         "cols": 3,
         "rows": [
            [
               {
                  "apiName": "FirstName"
               },
               {
                  "apiName": "LastName"
               },
               {
                  "apiName": "Email"
               }
            ],
            [
               {
                  "apiName": "MailingCity",
                  "autocomplete": [
                     "Paris",
                     "New York",
                     "London",
                     "Rome"
                  ]
               }
            ]
         ]
      }
   ]
}

Last updated

Was this helpful?