We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After applying #1736 it is not longer possible to delete files in "documents and files" (see Forum Post 35754).
The HtmlTable in "documents and files" is created with '-' in the ID: $page = new ModuleDocumentsFiles('admidio-documents-files', $headline);
'-'
$page = new ModuleDocumentsFiles('admidio-documents-files', $headline);
'_'
HtmlDataTable.php
@Fasse: What is your preferred fix? What do you think?
The text was updated successfully, but these errors were encountered:
Replace all - with _ in all HtmlTable creations would be a good idea because in Admidio 5 this is the default syntax for ids.
-
_
Sorry, something went wrong.
Also in Admidio 5 most IDs should have a prefix adm_
adm_
This must also be fixed in the master.
also added to master fix: '-' in Html(Data)Table Ids prevent using modal windows
MightyMCoder
Successfully merging a pull request may close this issue.
After applying #1736 it is not longer possible to delete files in "documents and files" (see Forum Post 35754).
Problem:
The HtmlTable in "documents and files" is created with
'-'
in the ID:$page = new ModuleDocumentsFiles('admidio-documents-files', $headline);
Possible fixes:
'-'
with'_'
in all HtmlTable creations.'-'
with'_'
inHtmlDataTable.php
before adding the ID to the JavaScript constant declaration.@Fasse: What is your preferred fix? What do you think?
The text was updated successfully, but these errors were encountered: