Concerning "User management" in Confluence, on the List Users results page how can I change the default max. users displayed to be higher than 10? I would rather it default to 50 per page rather than 10...
An alternative I guess would be to add ?resultsPerPage=50 to the "Show all users" link but how can I do that?
(/admin/users/showallusers.action?reset=true&resultsPerPage=50)
Works GREAT!
<script type="text/javascript">
AJS.toInit(function() {
AJS.$(".buttons > a[href^='showallusers']").attr('href', 'showallusers.action?reset=true&resultsPerPage=50');
});
</script>
Thanks for the tip! I was able to take your Custom HTML example and make it work for our needs. Just tweeked the selector a bit. Here's what I came up with that finally worked on the "Users" admin page:
<script type="text/javascript">
AJS.toInit(function() {
AJS.$(".buttons > a[href^='showallusers']").attr('href', 'showallusers.action?reset=true&resultsPerPage=50');
});
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One way to accomplish this would be to edit the link in the admin section in Confluence core and recompile Confluence.
A significantly easier approach would be to add a bit of JS to your Custom HTML:
<script type="text/javascript"> AJS.toInit(function() { AJS.$(".aui-nav > li > [href='/confluence/admin/users/showallusers.action']").attr("href", "/confluence/admin/users/showallusers.action?resultsPerPage=50"); }); </script>
Just be sure to update the context path to match your own, if you're not using /confluence.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.