Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/requirements/ux.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ Headers use Title Case, as an exception to the sentence-case rule for UI text, s

Needs: impl

## Main table sorts by several columns
`req~maintable.sort.multi-column~1`

The main table sorts by a primary column and, for entries equal in it, by a secondary, tertiary, … column.
<kbd>Shift</kbd> + click on a column header adds it as the next sort level.
The sort levels are kept across restarts.

Needs: impl

## Critical startup failures show an error dialog
`req~ux.startup.critical-error-dialog~1`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ void unbind() {
mainTablePreferences.resizeColumnsToFitProperty().removeListener(resizeColumnsListener);
}

// [impl->req~maintable.sort.multi-column~1]
void applySortOrder() {
List<TableColumn<BibEntryTableViewModel, ?>> sortOrder = configured(mainTablePreferences.getColumnPreferences().getColumnSortOrder())
.stream()
Expand Down
Loading