Announcement

Collapse
No announcement yet.

clientDefs , alter list row items

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • clientDefs , alter list row items

    Hello,

    I know that I can remove the select, create, and remove actions from record list views in a relationship panel via clientDefs, e.g.:

    PHP Code:
       "relationshipPanels": {
          
    "campaignLogRecords": {
            
    "rowActionsView""views/record/row-actions/empty",
            
    "select"false,
            
    "create"false
          
    }
       } 

    But is it possible to specify this for a specific entity's main list view without creating a specific list.js view? I.e. do it all via metadata, not creating a js file.

  • #2
    Hello
    You can override recordView list in clientDefs and there set "rowActionsView". Loot at Call clientDefs as example. Don't see other way for now

    Comment


    • #3
      Thanks Tanya - I just created my own list.js view.

      Comment

      Working...
      X