Hey developers, I need some help. I have a folder in which there are documents with an ID and a name. I need to create a condition in an interface to display only a document with a specific name. Is that possible?
Discussion posts and replies are publicly visible
What do you use on that interface to display the content? a grid? document and folder browser?For filtering documents a usually like a recordtype which contains the documentId and other metadata for a document like ids, tags, lastedited. Way easier to filter and search for specific values.
this is what i use :
a!sectionLayout( label: "", contents: a!documentViewerField( label: "", labelPosition: "ABOVE", document: local!document, height: "TALL" ),
I support Richard Michaelis in his suggestion to store additional meta data to the database and use that information to display documents to the user.
how do you choose local!document? With a a!save? with a local! definition?