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

--- Comment #7 from Jonathan Druart <[email protected]> ---
Please remember than column visibility and state will be broken if you don't
set bKohaColumnsUseNames. You also need to display all the columns, always, but
hide their content when needed.

eg.

[% UNLESS specific_patron %]<th data-colname="requested_by"
class="recall-patron">Requested by</th>[% END %]

This must be:
<th data-colname="requested_by" class="recall-patron">Requested by</th>
then you remove the date in the td.

And finally you deal with the visibility in the JS part before you pass
table_settings to kohaTable (`git grep force_visibility` and see also bug
41604).

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to