I want to show the contents of a folder on record dashboard so that all the docu

I want to show the contents of a folder on record dashboard so that all the documents in the folder are available as a link.
Tried using getdocumentsfromfolder() but think it doesn't work on SAIL. Please suggest....

OriginalPostID-99359

OriginalPostID-99359

  Discussion posts and replies are publicly visible

Parents
  • I just see the word document, but the label: part its no parsing the name. _ does not seem to work in label: but it works in document : _ , when i click it downloads 2 different docs as per the docIds, i want to show the name of the file.
    =a!linkField(
    label: "Documents",
    links: a!applyComponents(
                        function: a!documentDownloadLink(
                                  document: _,
                                  label:document(_,"name")                                        ),
              array: {5262,5258}
    )
                        )
Reply
  • I just see the word document, but the label: part its no parsing the name. _ does not seem to work in label: but it works in document : _ , when i click it downloads 2 different docs as per the docIds, i want to show the name of the file.
    =a!linkField(
    label: "Documents",
    links: a!applyComponents(
                        function: a!documentDownloadLink(
                                  document: _,
                                  label:document(_,"name")                                        ),
              array: {5262,5258}
    )
                        )
Children
No Data