Context List

The Context List component displays a tree of nested contexts based on a context mask.

The Context List component displays a table or a tree table of contexts, updating the view automatically upon context creation, removal, or update. Optionally, the user can be allowed to access variables, fields, and actions of the listed contexts. The component includes various filtering options and the option for the user to create new groups based on dynamically constructed filter tables.

Several filtering options give granular and dynamic control over precisely which contexts will be displayed to the user. The following properties (described below in more detail) can be used to create a precise subset of contexts to display to the user.

Suppose the task is to display a list of disconnected devices which belong to a particular user, and allow the user to select subsets based on device location.

The Root property determines what context will be the root of the context tree displayed by the component. In this case, the Devices context would be selected as the root, since only children of this context will be displayed to the user.

The Context Validity Rules is a validity expression evaluated for each child context of the Root. Only contexts where this expression evaluates to True will be displayed. In this example, to display only devices which are not connected, the expression {.:status$connectionStatus} != 1 is used, since it evaluates to True only for contexts where the connectionStatus is not 1, which indicates the device is not connected.

The Context Mask allows for further filtering, displaying only contexts which match the indicated context mask. This property could be dynamically updated with a binding, in such a way that the context mask will be devices.<current user>.devices.*, where <current user> is the user currently viewing the dashboard.

The Filter List table can be used to create predefined filters, which the user can choose to apply via dropdown menu. In this example, suppose that the description of each device also includes its location, with descriptions like Server One Honolulu, Server Two Honolulu, Server Three Marseille, Server Four Marseille, and so on. In addition to the default “All Resources” filter, specific filters could be made to allow the user to quickly filter for contexts with descriptions that contain the word “Honolulu” or “Marseille”.

Public Variables (Properties)

[?]

The Context List component has the following basic properties and property groups that are common to all components:

Name, Advanced Properties, Container Properties, Styles, Preloader, Events, Bindings, Kebab Menu.

Inherited Variables (Properties)

The Context List component is internally based on the Data Table component, so it inherits its shared properties.

Root

Absolute context path indicating the context which will be the root node of the displayed context tree.

Variable Name:

root

Records:

1

Record Format:

Field Name

Field Type

Field Description

root

String

Absolute context path for the root node of the displayed context tree.

Context Validity Rules

Expression to determine whether a given context will appear in the context list. Behaves in the same way as the Validity Expression in server contexts. If the expression evaluates to true, the context will be included in the component list, otherwise it will be excluded.

Variable Name:

validity

Records:

1

Record Format:

Field Name

Field Type

Field Description

validity

String

Evaluated as a Validity Expression for each context matching the Context Mask

Context Mask

Context mask which determines which contexts can be included in the context list. Only contexts matching the Context Mask will be displayed by the component.

Variable Name:

mask

Records:

1

Record Format:

Field Name

Field Type

Field Description

mask

String

Context Mask

Filter List

List of predefined filters. Every row defines a filter that the user can select from a dropdown menu and apply to their view of the contexts.

Variable Name:

filterList

Records:

0…Unlimited

Record Format:

Field Name

Field Type

Field Description

name

String

Name of filter to display to the user

settings

Data Table

Properties defining filter behavior:

  • Name - String - Name of the column included in the filter.

  • Fixed Column - String - Selection options to set the column as fixed Right, Left, or Unset

  • Header Text Behavior - String - Options determining how the user can see full column text.

    • Expand Column - User can change column width

    • Ellipsis - Ellipsis button appears in long headers, allowing full header text to be displayed when clicked.

    • Word Wrap - Header text is wrapped

  • Word Break - String - Rule to apply when wrapping text in a cell:

    • Don't Break - Breaks occur at natural points, such as between words or after a hyphen.

    • Break All - Forces line breaks between any two characters, but avoids starting lines with punctuation.

    • Break Word - Tries to keep words unbroken by moving it to the next line, but will break the word if the word is too long.

  • Visible Length - Integer - Maximum number of characters to display in a given field.

  • Cell Text Horizontal Alignment - String - Specifies how the content within a cell in the column should be horizontally aligned. Possible values are:

    • Left

    • Center

    • Right

  • Header Text Horizontal Alignment - String - Similar to Cell Text Horizontal Alignment, but applies specifically to column headers.

  • Cell Text Vertical Alignment - String - Specifies how the content within a cell in the column should be vertically aligned. Possible values are:

    • Bottom

    • Middle

    • Top

  • Header Text Vertical Alignment - String - Similar to Cell Text Vertical Alignment, but applies specifically to headers.

  • Sorter - Boolean - Determines whether the user can sort the data in the column by clicking on the column headers.

  • Sorter Preset - String - Specifies the default sort order for the column when it is loaded. The possible values are:

    • Ascending

    • Descending

    • Unset

  • Filtering - String - Determines how the specified column will be filtered. Possible values are:

    • None - No filtering will be applied to the column based on the values of the specified column.

    • Match String - Column will be filtered based on the values of the Match String field. Only rows with values that contain the Match String in the specified column will be displayed.

    • Filter - Column will be filtered based on the rows of the Filter Table data table.

  • Filter Table - Data Table - Rows of values to be applied as a filter to the specified column.

    • Value - String - Indicates the value to apply as a filter. Rows with values in the specified column that match this value will appear in filter results.

    • Description - String - Description of the filter value, for administrator reference.

    • Checked - String - Indicates that this row of the Filter Table will be used in the filter. If disabled, this row will be ignored when filtering.

  • Match String - String - if Filtering is set to the Match String option, only rows with values that contain the Match String in the specified column will be displayed.

  • Width - Integer - Specifies the width of the column in pixels. Default value of 0 will let the width be determined automatically

  • Visible - Boolean - Determines whether the column is displayed to the user.

  • Index - Integer - Specifies the column placement in the order of columns, with 0 being the first column, 1 the second column, and so on.

Keyword Filter

Every context in the context list is compared to the Keyword Filter. Only contexts which contain Keyword Filter string will be displayed. All contexts will be displayed if Keyword Filter is an empty string.

Variable Name:

keywordFilter

Records:

1

Record Format:

Field Name

Field Type

Field Description

keywordFilter

String

Filtering string to apply to fields indicated by the Filter List property.

Enable Multiple Row Selection

When enabled, the user will be able to select multiple contexts of identical type, and any actions selected from the Action Menu can be applied to all selected contexts.

Variable Name:

checkRows

Records:

1

Record Format:

Field Name

Field Type

Field Description

checkRows

Boolean

Enable Multiple Row Selection

Component Location

Determines the location and size of new windows (components) opened through users interacting with the Context List.

See Component Location for details on this property’s format and behavior.

Variable Name:

componentLocation

Records:

1

Record Format:

Field Name

Field Type

Field Description

componentLocation

Data Table

Fields are defined in Component Location.

Public Events

[?]

Inherited Events

Context List component is internally based on Data Table component, so it inherits its shared events.

Custom Events

No custom events.

Was this page helpful?