Announcement

Collapse
No announcement yet.

Copy task attachment field

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

  • Copy task attachment field

    Hi,
    I wanted to ask is it possible to duplicate the attachments field that is available in the default task entity to a custom entity? Since the field "Attachments" does not have the ability to create and attach a file from documents entity
    Attached Files

  • #2
    i think you can trace the code applied to Task and customise the code for your custom entity.

    Comment


    • #3
      Found it, you need to add "Document" to source list in the custom entityDef file:

      custom/Espo/Custom/Resources/metadata/entityDefs/customEntity.json

      "attachments": {
      "type": "attachmentMultiple",
      "previewSize": "medium",
      "sourceList": ["Document"],
      "accept": [],
      "isCustom": true​

      Comment


      • #4
        Actually, this is available at administration > entity manager > {entity} > fields > attachments.

        Comment

        Working...
        X