comparison Applications/StoneWebViewer/NOTES.txt @ 1692:e787b52d025f

"selectedStudies" argument to replace "selectedStudyIds" from Osimis Web viewer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 25 Nov 2020 18:11:42 +0100
parents 4a49de03a419
children 572652803929
comparison
equal deleted inserted replaced
1691:4a49de03a419 1692:e787b52d025f
18 http://.../index.html?study=<StudyInstanceUID> 18 http://.../index.html?study=<StudyInstanceUID>
19 19
20 To open a single series: 20 To open a single series:
21 http://.../index.html?study=<StudyInstanceUID>&series=<SeriesInstanceUID> 21 http://.../index.html?study=<StudyInstanceUID>&series=<SeriesInstanceUID>
22 22
23 - The "pickableStudyIds" parameter in the URL (to specify a list of 23 - In the Osimis Web viewer, the "pickableStudyIds" parameter in the
24 studies to be displayed) is replaced by the single "study" GET 24 URL defines the list of studies that are available for display, and
25 argument, that is allowed to contain a comma-separated list of 25 that are listed in the dropdown at the top-left of the interface.
26 studies. The "series" parameter is ignored in this case. 26
27 In the Stone Web viewer, "pickableStudyIds" is replaced by the
28 single "study" GET argument, that is allowed to contain a
29 comma-separated list of studies. The "series" parameter is ignored
30 in this case.
27 31
28 To open a list of studies: 32 To open a list of studies:
29 http://.../index.html?study=<StudyInstanceUID1>,<StudyInstanceUID2>,... 33 http://.../index.html?study=<StudyInstanceUID1>,<StudyInstanceUID2>,...
30 34
35 - In the Osimis Web viewer, the "selectedStudyIds" defines the list of
36 studies that are selected in the dropdown (and therefore displayed
37 when the viewer starts).
38
39 In the Stone Web viewer, "selectedStudyIds" is replaced by the
40 "selectedStudies" GET argument, that is allowed to contain a
41 comma-separated list of studies.
42
43 To make a list of studies available, but display only one of those
44 studies when the viewer starts:
45 http://.../index.html?study=<StudyInstanceUID1>,<StudyInstanceUID2>,...&selectedStudies=<StudyInstanceUID1>
46
47 If the "selectedStudies" is not provided, then all the studies are
48 displayed at the startup.
49