Install a 4.2 package.
Go to a list view that includes more than 2 records and uses multiselect.js, for example the update extensions installer:
http://root/administrator/index.php?option=com_installer&view=update
Select one of the checkbox.
Only that checkbox is checked
The same checkbox and the next one is checked. 2 checkbox are checked at once.
The error is due to this change in the file multiselect.js, line 16.
Joomla 4.1 OK:
this.boxes = [].slice.call(this.tableEl.querySelectorAll('input[type=checkbox]'));
Joomla 4.2 ERROR:
this.boxes = [].slice.call(this.tableEl.querySelectorAll('td input[type=checkbox]'));
Labels |
Added:
No Code Attached Yet
|
@brianteeman at the moment the issue is still present in the 4.2 Alpha 3 dev. Not sure where is has been fixed and still not merged.
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2022-05-02 16:58:59 |
Closed_By | ⇒ | Fedik |
I'm sure this was fixed some time ago