In SQL, if I add an Order By clause, the SQL server sorts the data before returning the result set. In Jira, if I click on a filed heading, it adds an Order By clause to the JQL. This isn't really sending the request back to the server just for sorting, is it? Most data tools have functionality for sorting a result set on the Client separately from sorting on the server. Does Jira have this capability?
Hello,
I just checked. Jira does send a request if you sort a jql result by clicking on a field heading.
First, how did you check? I'd like to be able to see what and when it sends a request.
Second, is there a way to sort on the client? Seems wasteful to send a bunch of requests if your user just wants to sort a few different ways.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I opened the developer tools in my browser and had a look at the request, which is sent when I am clicking on a column header.
You can not sort it on the client. It is sent to the server.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think you may potentially order the results on a properly configured client, and not on all clients at once.
This would be kind-of a not very recommendable workaround that would work just for Chrome, but as it seems to be theoretically possible, I'll roughly describe the solution below:
Really cool things can be achieved by modifying the web page as it's being loaded, including but not limited to:
Regards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ie: You may override the functionality of header's onClick() events so that they behave in a different manner, or add a button that ordered the displayed issues in a given manner.
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.