jDownloads Support Forum

jDownloads for Joomla 4.x and 5.x => jDownloads 4.x - (This is the current version!) => General => Topic started by: LinaG on 04.05.2026 17:42:51

Title: "Select all files" no longer works - Layout "Compact Files layout with Checkboxes 3.9"
Post by: LinaG on 04.05.2026 17:42:51
Hello!
I had activated the "Compact Files layout with Checkboxes 3.9" plugin to allow downloading multiple files at the same time. In this version 4.1.3, the "Select all files" button appears but doesn't select any files. How do I get it working again?
Thanks
Title: Re: "Select all files" no longer works - Layout "Compact Files layout with Checkboxes 3.9"
Post by: ColinM on 05.05.2026 11:42:05
Hi,
I reproduced your result so I tried 'ticking' each individual box (select-all-files01.png). After clicking on the Continue button it listed the set of files in a Summary View as expected (select-all-files02.png).  Next pressed the Download Button. This gave a 404 error 'Requested page cannot be found' (select-all-files03.png).
Joomla 6.1
jD 4.1.3 Stable

ColinM
Title: Re: "Select all files" no longer works - Layout "Compact Files layout with Checkboxes 3.9"
Post by: LinaG on 05.05.2026 13:12:33
Hi, thank you for testing!
In my case I am running Joomla 5.4.5 + jD 4.1.3. The checkbox "Select all files" was not working (neither select-all nor individual checkboxes were functional), but after applying the JavaScript workaround described below, both selecting files and downloading (including the ZIP package) work correctly — no 404 error.
So it seems there are actually two separate bugs:
1.    Checkbox bug (Joomla 5 + PHP 8.x) — onclick attributes on both the toggle and individual checkboxes are malformed in the generated HTML (value onclick= instead of two separate attributes), so the handlers never fire and boxchecked stays empty.
2.    404 on Download — which you reproduced on Joomla 6.1 but I cannot reproduce on Joomla 5.4.5.
Workaround for bug #1 (add to the "User After layout" field of the active checkbox Files layout):
html
<script>
document.addEventListener('DOMContentLoaded', function () {

    window.istChecked = function(isChecked, catid) {
        var boxchecked = document.querySelector('input[name="boxchecked"]');
        if (!boxchecked) return;
        if (isChecked) {
            boxchecked.value = 1;
        } else {
            var anyChecked = document.querySelectorAll(
                'input[name="cb_arr[]"]:checked'
            ).length > 0;
            boxchecked.value = anyChecked ? 1 : 0;
        }
    };

    window.checkAlle = function() {
        var toggle = document.querySelector('input[name="toggle"]');
        if (!toggle) return;
        var isChecked = toggle.checked;
        document.querySelectorAll('input[name="cb_arr[]"]').forEach(function(cb) {
            cb.checked = isChecked;
        });
        var boxchecked = document.querySelector('input[name="boxchecked"]');
        if (boxchecked) boxchecked.value = isChecked ? 1 : 0;
    };

    document.querySelectorAll('input[name="toggle"]').forEach(function(t) {
        t.addEventListener('change', checkAlle);
    });

    document.querySelectorAll('input[name="cb_arr[]"]').forEach(function(cb) {
        cb.addEventListener('change', function() {
            istChecked(this.checked, 160);
        });
    });

});
</script>
Title: Re: "Select all files" no longer works - Layout "Compact Files layout with Checkboxes 3.9"
Post by: ColinM on 05.05.2026 13:56:12
Lina
Clearly there is some missing code.
In my opinion the code you have defined should be included within jD itself, not in the Use After Layout section of the  "Compact Files Layout with Checkboxes v3.9".  There maybe other cases in other layouts so I will look at these.
Best wishes
ColinM
Title: Re: "Select all files" no longer works - Layout "Compact Files layout with Checkboxes 3.9"
Post by: ColinM on 05.05.2026 14:09:37
Lina
This is also a 'challenge' with layout "Standard Files Layout with Checkboxes" as expected.  So any correction code really does need to be in jD itself
ColinM
Title: Re: "Select all files" no longer works - Layout "Compact Files layout with Checkboxes 3.9"
Post by: LinaG on 05.05.2026 14:46:35
Thank you ColinM for investigating this further and confirming the root cause. I'm glad the workaround helped identify the issue. Looking forward to the fix in a future version!
Best regards,
Lina
Title: Re: "Select all files" no longer works - Layout "Compact Files layout with Checkboxes 3.9"
Post by: ColinM on 06.05.2026 13:08:40
Have also tried with layout Standard Files Layout with Checkboxes v3.9
It has the same problem.
ColinM
Title: Re: "Select all files" no longer works - Layout "Compact Files layout with Checkboxes 3.9"
Post by: LinaG on 06.05.2026 18:22:40
Thank you
Lina