Skip to content

Commit

Permalink
Fix #13363: ColumnToggler selectAll checkbox UI fix (#13366)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Feb 20, 2025
1 parent 6381d16 commit a2c2b7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ PrimeFaces.widget.ColumnToggler = class ColumnToggler extends PrimeFaces.widget.
// select all checkbox
this.selectAllCheckbox = $('<li class="ui-columntoggler-all">' +
'<div class="ui-chkbox ui-widget">' +
'<div role="checkbox" tabindex="0" aria-checked="true" aria-label="' + this.getAriaLabel('selectAll') + '" class="ui-chkbox-box ui-widget ui-state-default">' +
'<div role="checkbox" tabindex="0" aria-checked="true" aria-label="' + this.getAriaLabel('selectAll') + '" class="ui-chkbox-box ui-widget ui-state-default ui-state-active">' +
'<span class="ui-chkbox-icon ui-icon ui-icon-check"></span></div></div>' +
'</li>');
this.selectAllCheckbox.appendTo(this.itemContainer);
Expand Down

0 comments on commit a2c2b7b

Please sign in to comment.