Hello,
We have a form connected with contentbuilder. But when editing an entry the checkbox for deleting uploaded files is missing the filename. How can we solve this ..
We working in joomla4 php version 8.0
You can take a look at the test environment: 05.bluepoint-concept.nl/index.php/list-2 and edit item.
see attachement.
theageofhistory.com/
To solve the issue of the missing filename in the checkbox for deleting uploaded files when editing an entry in the form connected with ContentBuilder in Joomla 4 with PHP version 8.0, you may need to modify the code related to the file upload functionality.
First, ensure that the file upload process is properly capturing and storing the filenames associated with the uploaded files. Check if the filenames are being stored correctly in the database or any other storage mechanism.
Next, review the code responsible for generating the checkbox for deleting uploaded files during the editing process. Verify that the code is retrieving the filename associated with each file and populating it correctly within the checkbox label or attribute.
If the filename is not being fetched or displayed properly, you might need to update the code to include the filename when generating the checkbox. Make sure to reference the correct variables or methods that contain the filename information and include it in the appropriate place within the checkbox element.
Once the necessary modifications are made, test the form in the editing mode to ensure that the filenames are displayed correctly alongside the checkbox for deleting uploaded files.