When we search any issue or use filters in Issue Navigator (List view), the header will scroll up along with issues when you scroll down, and it become difficult to remember the name of column.
How can we freeze the header row?
if you're open to solutions from the Atlassian Marketplace, I think you might like JXL for Jira.
JXL is a full-fledged spreadsheet/table view for your issues that allows viewing and inline-editing all your issue fields. You can freely add, remove, re-order, and resize these fields, and view any number of issues in one list - so many customers found it a great addition to the native Issue Navigator.
Plus, the column header always stays visible :)
Here's how it looks in action:
It's worth noting that JXL can do much more than that; from quick sorting and filtering, to support for "special columns" such as "time in status", to support for issue hierarchies, issue grouping, and sum-ups. Disclaimer: I work on JXL :)
Hope this helps,
Best,
Hannes
Hi @Kuldeep Upadhyay Welcome to Atlassian Community!
Unfortunately,there is no workaround to freeze headers. Check the open issue :-
https://jira.atlassian.com/browse/JRASERVER-60118
Workarounds:-
Workaround 1
Access the results from the Issue Navigator (i.e View the issue navigator results in 'List view') and then click on the issue key. DO NOT do a right click>open in a new window.
Alternatively, access an issue using this URL format:
<Base_URL>/browse/<Issue_Key>?jql=
Example: https://jira.atlassian.com/browse/JRASERVER-60118?jql=
Workaround 2
Add the following script to the Jira's Announcement Banner:
<style>
#header {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
z-index: 1000;
}
.aui-header { z-index: 1001; }
</style>
<script type="text/javascript">
AJS.toInit(function() {
AJS.$("#content").css("top", AJS.$("#header").height());
AJS.$("#stalker").css("padding-top", AJS.$("#header").height());
});
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join the largest European gathering of the Atlassian Community and reimagine what’s possible when great teams and transformative technology come together. Plus, grab your Super Fan ticket now and save over €1,000 on your pass before prices rise on 3 June.
Register nowOnline 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.