Widget: DCTList: Difference between revisions

From LINKS Community Center
Jump to: navigation, search
Eschmidt (talk | contribs)
No edit summary
Eschmidt (talk | contribs)
No edit summary
Line 156: Line 156:


     function selectAll() {
     function selectAll() {
        document.querySelectorAll('#data-source-filter input[type="checkbox"]').forEach(el => el.checked = true);
         console.log('select all')
         console.log('select all')
     }
     }
     function deselectAll() {
     function deselectAll() {
        document.querySelectorAll('#data-source-filter input[type="checkbox"]').forEach(el => el.checked = false);
         console.log('deselect all')
         console.log('deselect all')
     }
     }

Revision as of 14:17, 8 June 2022

Development verstion of the DCT List.
Not ready for production!