Hi Roland,
To fix the issue in Mendix where uploaded files do not persist in the FileDropper widget when navigating between wizard steps, you need to ensure proper data association and persistence. First, create a FileDocument entity in your domain model if it is not already available. Then, establish an association between this entity and the object used in your wizard, naming it something like Wizard_Attachment. Set the FileDropper’s data source to retrieve files from the FileDocument entity through this association, ensuring that the files remain visible even after navigating away. Additionally, configure the FileDropper’s On Upload event to associate the uploaded file with the Wizard_Attachment entity. To finalize the process, use a microflow or nanoflow to commit the file after upload, ensuring its persistence throughout the wizard flow.