clientDefs , alter list row items

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • alasdaircr
    Active Community Member
    • Aug 2014
    • 525

    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.
  • tanya
    Senior Member
    • Jun 2014
    • 4308

    #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

    • alasdaircr
      Active Community Member
      • Aug 2014
      • 525

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

      Comment

      Working...