Options
All
  • Public
  • Public/Protected
  • All
Menu

External module ItemList

Index

Type aliases

ItemListFieldValueTransformFn

ItemListFieldValueTransformFn: function

Function used to transform an item list column into a different item before it is loaded into a viewer card instance

returns

A HTML Element or string of HTML that will be used when rendering the cell value in an item list column

Type declaration

    • (content: any, dataItem: any): any
    • Parameters

      • content: any
      • dataItem: any

      Returns any

ItemListFieldValueTransformIdentificationFn

ItemListFieldValueTransformIdentificationFn: function

Function used to retrieve the list of field artifact IDs the field value transform will be applied to

This method will block the rendering of any item lists in the Review Interface UI. Currently, this method is only invoked once at application startup. In the future, it may be invoked periodically, in order to update the list of fields to apply the transform to.

param

Public Review Interface API

returns

a Promise that resolves to the array of field artifact IDs that should apply the transform

Type declaration