Skip to content
Snippets Groups Projects
Commit da7137b6 authored by aboeckle's avatar aboeckle
Browse files

OO-4410 Fixed "delete selection" in table column chooser

parent 6261d7de
No related branches found
No related tags found
No related merge requests found
......@@ -6,8 +6,8 @@ Widgets: remove accordion, progressbar, slider, spinner, tabs
Effects: need only Effects Core and Pulsate Effect
Theme: Smoothness
The js.plugins.min.js and js.plugins.min.css are build with:
mvn -Pcompressjs verify
To compile js.plugins.min.js and js.plugins.min.css check the readme file in the root directory
It contains the following minified javascripts:
functions.js
jshashtable-2.1_src.js
......
......@@ -1950,7 +1950,7 @@ function o_choice_toggleCheck(ref, checked) {
else {
var i;
for (i=0; i < len; i++) {
if (checkboxes[i].type == 'checkbox' && checkboxes[i].getAttribute('class') == 'o_checkbox') {
if (checkboxes[i].type == 'checkbox' && checkboxes[i].getAttribute('class') == 'o_checkbox' && checkboxes[i].getAttribute('disabled') != 'disabled') {
checkboxes[i].checked=checked;
}
}
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment