Got feedback or spotted a mistake?

Leave a comment at the end of this page or email contact@krishagni.com

Displaying Record Identifiers on the Interface

Introduction

Users can now add specimen identifiers to the specimen overview, list, and search filters in the workflow.

Configuration for specimen identifier

Add the below code block in the dictionary section of JSON workflow.

{ "name" : "specimen.id", "caption" : "Identifier", "type" : "span" }

Screenshot:

image-20240827-093325.png

 

Show identifier field in specimen list-view

Users can display the specimen identifier in the specimen list view and search filters. This allows users to quickly view and filter specimens based on their unique identifiers.

Add below code in specimen-list view page — You can refer to this wiki page for more details. (Example 30 in Expressions for other fields that can be added to the list view)

{ "expr" : "Specimen.id", "caption" : "Specimen ID" },
Got feedback or spotted a mistake?

Leave a comment at the end of this page or email contact@krishagni.com