Adding a document to a form

0
Id like to know how to add a document to each object i create.. For example if im creating a registration form for drivers in my state. I would like to upload a pdf document of each drivers birth certificate.
asked
1 answers
3

Rahman,

  • Create an entity that is a Specialization of System.FileDocument (in the entity create box, select System.FileDocument in the Generalization box). Lets call this entity SupportingDocument
  • Associate the SupportingDocuments entity to the Registration entity with a one to many association (each Registration object can have many SupportDocument objects associated with it)
  • Now you can use a FileManager widget to let users upload a document.

How To for FileManager can be found here: FileManager

Mike

answered