Ticket #556 (closed: fixed)
View action for search results file cell in Hits table
| Reported by: | olle | Owned by: | olle |
|---|---|---|---|
| Milestone: | Proteios SE 2.8 | Keywords: | |
| Cc: |
Description
Search results file cell in Hits table should have view action for inspecting the search results.
- If the search results for the file have been imported, the view action should be set to ViewActiveSpectrumSearch for viewing the imported search results. Otherwise, the view action should be set to ViewActiveFile for viewing the search results file properties.
- For consistency, the same view action should be added to the search results file cell in the single hit view table, as recommended in Ticket #507 (View action for hits should use a table instead of generic form).
Change History
comment:2 Changed 3 years ago by olle
(In [3282]) Refs #556. Refs #507. Refs #554. First version of view action for search results file cell in Hits table:
- Class/file action/ActionFactory.java in client/servlet/ updated
in public synchronized method ActionLink getViewActionLink(AttributeDefinition ad) by setting view action for search results file cell in Hits table to ViewHitSearchResultFile.class.
- Class/file action/hit/ViewActiveHit.java in client/servlet/
updated in private method Table constructHitTable(Hit hit) by setting view action for search results file cell in single hit view table to ViewHitSearchResultFile.class.
- New class/file action/hit/ViewHitSearchResultFile.java in
client/servlet/ added. It transfers the selected hit id to session attribute ViewActiveHit.VHITID, and then forwards the action to new action class ViewActiveHitSearchResultFile.class.
- New class/file action/hit/ViewActiveHitSearchResultFile.java in
client/servlet/ added. It the results in the search results file have been imported, the view action is set to class ViewActiveSpectrumSearch for inspecting the imported results, otherwise class ViewActiveFile for inspecting the search results file properties. Finally, the action is forwarded to the chosen view action class.

Ticket accepted.