[Koha-bugs] [Bug 32477] Hiding batch item modification columns isn't remembered correctly

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Nov 21 11:52:26 CET 2023


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32477

Emmi Takkinen <emmi.takkinen at koha-suomi.fi> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |emmi.takkinen at koha-suomi.fi

--- Comment #3 from Emmi Takkinen <emmi.takkinen at koha-suomi.fi> ---
Apparently this happens because columns still have attribute "checked=checked"
even if class "selected" is removed. Then we do this:

if ($(this).prop("checked")) {
    showColumn(num);
 } else {
    hideColumn(num);
}

So solution could simply be that we need to set checked attributed as false,
not just remove class "selected".

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.


More information about the Koha-bugs mailing list