Originally created by: sf-overlords
Created by: max
Created date: 2010-04-28 07:51:28.341000
Assigned to:nobody
Currently it's not possible to order list of tickets so that high-priority would be on top. It's also not possible to find high-priority tickets using search.
As a first measure, we could add Priority column to the tickets' table.
Note on search.
You can write a proper SOLR query:
http://localhost:8983/solr/core0/select?indent=on&version=2.2&q=123&fq=_priority_s%3Ahigh&start=0&rows=10&fl=*%2Cscore&qt=standard&wt=standard&explainOther=&hl.fl=
You could also do the same in search_artifact()
if you add:
fq.append('_priority_s:high')
Still, there is no way for the user to do this since user has no control over fq
variable.
Originally by: sf-overlords
Post by max:
description has changed
description has changed
Originally by: sf-overlords
Post by mramm:
You can go to the Admin, configure the priority field to show up in search results, and then have it sort by priority by clicking on it in the search results...
Except that when I just tried that it's not working properly.
Originally by: sf-overlords
Post by max: