-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[webapp] Improve Transfer Options submenu
- show Transfer Syntax UID in each option - simplify and restyle form, reduce text - have two "Select all" buttons instead of one - one of them changes TSes for the selected SOP class, the other one changes all transfer syntaxes
- Loading branch information
Showing
4 changed files
with
109 additions
and
41 deletions.
There are no files selected for viewing
18 changes: 14 additions & 4 deletions
18
dicoogle/src/main/resources/webapp/js/actions/transferActions.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
import Reflux from "reflux"; | ||
|
||
export const get = Reflux.createAction(); | ||
export const set = Reflux.createAction(); | ||
export const selectAll = Reflux.createAction(); | ||
export const unSelectAll = Reflux.createAction(); | ||
export const selectAllSOP = Reflux.createAction(); | ||
export const unSelectAllSOP = Reflux.createAction(); | ||
|
||
export const TransferActions = { | ||
get: Reflux.createAction(), | ||
set: Reflux.createAction(), | ||
selectAll: Reflux.createAction(), | ||
unSelectAll: Reflux.createAction() | ||
get, | ||
set, | ||
selectAll, | ||
unSelectAll, | ||
selectAllSOP, | ||
unSelectAllSOP, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,3 +81,7 @@ | |
.panel-heading-toggle { | ||
padding-right: 40px; | ||
} | ||
|
||
.manage-ts-options { | ||
padding-left: 20px; | ||
} |