The Biologics application offers a number of URL properties that can be used to direct the user to a specific part of the application.
In these example URLs, we use the host "example.lkpoc.labkey.com" and a project named "Biologics Example". Substitute your actual server URL and path (everything before the "biologics-app.view?" portion of the URL.
Last Page You Viewed
When you are in the LabKey Server interface, you can hand edit the URL to return to the last page you were viewing before switching to LabKey.
Substitute the server and path for your biologics-app.view and append the lastPage property:
https://example.lkpoc.labkey.com/Biologics%20Example/biologics-app.view?#/.lastPage
Reports Dashboard
To view the
Reports dashboard, use "/reports":
https://example.lkpoc.labkey.com/Biologics%20Example/biologics-app.view?#/reports
URL Redirects
The following redirects can be done directly to the URL for navigating a user programmatically. Note that these examples assume various rowID to assay mappings that may be different in your implementation.
URL ending like this | Can be represented by | Resolves to... |
---|
Any Biologics URL | #/.lastPage | The last page you were viewing |
/assay-assayBegin.view?rowId=45 | #/assays/45 | #/assays/general/titer |
/assay-assayResults.view?rowId=765 | #/assays/765 | #/assays/general/amino%20acids |
/experiment-showDataClass.view?name=CellLine | #/rd/dataclass/cellline | #/registry/cellline |
/experiment-showDataClass.view?name=Mixture | #/rd/dataclass/mixture | #/media/mixtures |
/experiment-showData.view?rowId=3239 | #/rd/expdata/3239 | #/registry/molecularspecies/3239 |
/experiment-showMaterials.view?rowId=3087 | #/rd/samples/3087 | #/samples/expressionsystemsamples/3087 |
/list-grid.view?listId=18&pk=2 | #/q/lists/18/2 | #/q/lists/mixturetypes/2 |
/reports | #/reports | Reports Dashboard |
/assays | #/assays | Assay Dashboard |
/query-begin.view | #/q | Schema/Query Browser |
/list-begin.view | #/q/lists | Lists |
Related Topics