You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An optional, custom `XMLHttpRequest` can be passed to `storeInstances` as a property of the `options` parameter. When present, instead of creating a new `XMLHttpRequest` instance, the passed instance is used instead. One use of this would be to track the progress of a DICOM store and/or cancel it.
53
-
54
-
See the js snippet below for an example of where the upload's percentage progress is output to the console.
52
+
## Configuration Options
53
+
The API can be configured with a number of custom configuration options to control the requests. These are:
54
+
* url to retrieve from for the base requests
55
+
* singlepart, either true or a set of parts from `bulkdata,image,video` to request as single part responses
56
+
* headers to add to the retrieve
57
+
*`XMLHttpRequest` can be passed to `storeInstances` as a property of the `options` parameter. When present, instead of creating a new `XMLHttpRequest` instance, the passed instance is used instead. One use of this would be to track the progress of a DICOM store and/or cancel it.
58
+
59
+
An example use of `XMLHttpRequest` being passed into the store is shown in the js snippet below
60
+
as an example of where the upload's percentage progress is output to the console.
0 commit comments