Advanced

Overview

This category contains widgets that don't belong to any of the above categories, but provide advanced data management capabilities.

Subtitle

The Subtitle widget does not store any data. It adds a subtitle to the form and serves as the group in the columns view.

Form view:

Edit view:

Not supported.

Readonly view:

Configuration:

Provide the gird information in the configuration to define the number of col to be displayed. Learn more at https://materializecss.com/grid.html

s12 // display as one col
s12 m6 // display as one col in mobile, and 2 cols in desktop

Import value:

Not supported

Rating

A rating is an evaluation or assessment of something, in terms of quality, quantity, or some combination of both. Use the Rating widget to rate:

Readonly view:

Edit view:

Form view:

Same as the edit view.

Configuration:

Not supported

Import value:

Not supported

NestedFields

Use NestedFields to track more than one item. For example, you can use NestedFields to track how many books are ordered:

  • Book 1, ordered 10

  • Book 2, ordered 5

Readonly view:

Edit view:

Form view:

Same as the edit view.

Configuration

{ # use the propterties from https://react-jsonschema-form.readthedocs.io/en/latest/
  "properties": { # (required)
    "book": {
      "type": "string",
      "title": "Book",
      "description": "Select a book.",
      "enum": ["Book 1", "Book 2"],
      "enumNames": ["Book 1", "Book 2"],
      "widget": "MaterialFormSelect",
      "default": "Book 1"
    },
    "quantity": {
      "type": "number",
      "title": "Quantity",
      "description": "The quantity book to order.",
      "widget": "MaterialFormNumber",
      "min": 1,
      "default": 1
    }
  },
  "minItems": 1, # number of nested fields to load on default
  "items": [], # (optional), if provided, it will overwrite the properties
  "required": [
    "test",
    "quantity"
  ]
}

Import value:

Not supported

Signature Status

The signature status of a record refers to the status of the digital signature applied to it, which can be used to verify its authenticity and ensure that it has not been tampered with or altered. With this widget, you can view the signature status of each record in real-time with one of the following statuses:

  • Unsigned - Not yet signed

  • Witnessing - It has been signed by the author but has not yet been signed by the witnesses.

  • Signed - Signed by all the authors and witnesses

Readonly view:

Edit view:

Not supported

Form view:

Not supported

Configuration:

Not supported

Import value:

Not supported

StorageCoordinates

StorageCoordinates allows you to find and store coordinates within a storage location.

Readonly view:

Edit view:

It's easy to get the correct coordinates by clicking the Find button.

Form view:

Configuration:

  • Table (Storage) - Choose the Storage table from the drop-down menu.

  • Column (Storage) - Choose the Storage column of the current table from the drop-down menu.

  • Column (Number of rows) - Choose the column (Number of rows) of the storage table.

  • Column (Number of columns) - Choose the column (Number of columns) of the storage table.

  • Column (Should transpose header) - Choose the column (Should transpose header) of the storage table.

Default value:

Same as the import value.

Import value:

Coordinates in text format. For example. A1

Last updated