From c7c54d93618d456ce6e53ee35b4280097cc3f54c Mon Sep 17 00:00:00 2001 From: Stephane V Date: Wed, 16 Jul 2014 22:23:15 +0200 Subject: Adds 2 checkboxes at the top of userlist in the settings, to display/hide optional columns This fixes #9367. --- settings/js/users/users.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'settings/js/users/users.js') diff --git a/settings/js/users/users.js b/settings/js/users/users.js index 0f72746ee83..86ed43d958e 100644 --- a/settings/js/users/users.js +++ b/settings/js/users/users.js @@ -707,4 +707,27 @@ $(document).ready(function () { ); }); + // Option to display/hide the "Storage location" column + $('#CheckboxStorageLocation').click(function() { + if ($('#CheckboxStorageLocation').is(':checked')) { + $("#headerStorageLocation").show(); + $("#userlist td.storageLocation").show(); + } else { + $("#headerStorageLocation").hide(); + $("#userlist td.storageLocation").hide(); + } + }); + // Option to display/hide the "Last Login" column + $('#CheckboxLastLogin').click(function() { + if ($('#CheckboxLastLogin').is(':checked')) { + $("#headerLastLogin").show(); + $("#userlist td.lastLogin").show(); + } else { + $("#headerLastLogin").hide(); + $("#userlist td.lastLogin").hide(); + } + }); + + + }); -- cgit v1.2.3