Skip to main content

Configuring Table Extension Actions

Mass Delete

Use below JSON Configuration

CODE
{
   "icon":"utility:delete",
   "recordLevel":"single+multiple",
   "shortcut":"Ctrl + C",
   "showInToolBar":true,
   "targetConfiguration":{
      "componentName":"c:tables_massDeleteCmp",
      "title":"Mass Delete",
      "componentParams":{
         "records":"{!selectedRecords}"
      },
      "footerActions":[
      ]
   },
   "targetType":"Aura/LWC Component"
}

Mass Assignment

Use below JSON Configuration

CODE
{
   "icon":"utility:change_owner",
   "recordLevel":"single+multiple",
   "shortcut":"Ctrl + C",
   "showInToolBar":true,
   "targetConfiguration":{
      "componentName":"c:tables_massOwnerAssignmentCmp",
      "title":"Mass Assignment",
      "componentParams":{
         "records":"{!selectedRecords}"
      },
      "footerActions":[
         {
            "name":"Next",
            "label":"Next",
            "theme":"brand-outline"
         },
         {
            "name":"Cancel",
            "label":"Cancel",
            "theme":"destructive-text"
         }
      ]
   },
   "targetType":"Aura/LWC Component"
}

Mass Clone

Use below JSON Configuration

CODE
{
   "icon":"utility:copy",
   "recordLevel":"single+multiple",
   "shortcut":"Ctrl + C",
   "showInToolBar":true,
   "targetConfiguration":{
      "componentName":"c:tables_massCloneCmp",
      "title":"Mass Clone",
      "componentParams":{
         "records":"{!selectedRecords}",
         "objectApiName":"{!objectApiName}"
      },
      "footerActions":[
         {
            "name":"Next",
            "label":"Next",
            "theme":"brand-outline"
         },
         {
            "name":"Cancel",
            "label":"Cancel",
            "theme":"destructive-text"
         }
      ]
   },
   "targetType":"Aura/LWC Component"
}

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.