Sorting and Filtering

Sorting and filtering do not change or reorder the actual data in the table, but only its visible presentation.

Sorting Rows

You can sort the rows of a Data Table being edited or viewed. To enable sorting, click the column header. Clicking a header already used for sorting will reverse the sorting order.

To sort table by multiple columns, click them in a desired sort priority order while holding Ctrl key down.

Object List Sorting

If an object list is used as the data source for the editor, sorting rules update caused sorting of the whole object list rather than currently displayed records only. Thus, re-sorting may completely change currently visible records.

Filtering Rows

There are several ways to filter data in a Data Table Editor.

Using Filter Text Field

Enter some text in filter text field located in the Data Table Editor toolbar (and indicated by a looking glass icon). Table contents will be filtered to show only rows matching to the filter.

Context menu of the filter bar provides the following operations:

Column Selection

Allows to perform searching in all columns or selected columns only.

Case Sensitive

Enables case sensitive searching.

Case Insensitive

Disables case sensitive searching.

Use Wild Cards

Enables/disables wildcard search mode. Wild cards may include * or ? characters that match any characters or any character, respectively. The * and ? characters can be escaped with \.

Use Regular Expressions

Enables/disables regular expression search mode.

Match From Start

Filter text must appear in the beginning of cell text.

Match Exactly

Filter text must exactly match cell text.

Match Anywhere

Filter text may appear anywhere in the cell text.

Using Quick Filter

Hover mouse over a column header cell and a Quick Filter icon will pop up in this cell. Click on this icon and select field values that should be shown. Records with other field values will be filtered out.

Advanced Filters

Advanced Filters are an intuitive interface for the user to create complex, custom filters. When the Enable Advanced Search property of a Data Table component is checked, the user can add any number of type-appropriate filtering parameters from the filter menu. In the case that these filter options are not sufficient, filters of arbitrary complexity can be implemented with an expression and applied immediately to the table via the Advanced Filter toolbar.

Toolbar

The Advanced Filter toolbar is managed with a handful of tools:

Icon

Operation

Show the Advanced Filter toolbar.

Hide the Advanced Filter toolbar.

Opens a checkbox menu with a list of all fields that can be filtered. Checking a field creates an Advanced Filter for the field. Similarly, unchecking a field removes any filters applied to that field.

An Advanced Filter Button appears for each field selected for filtering under the Set Filters menu. The button text indicates the name of the field being filtered, and a preview of the filter criteria being applied. Clicking the button opens a menu of all type-appropriate criteria to apply when filtering the field.

Toggle between Custom Filtering Expression and Advanced Filters.

Applies the filtering described by the Custom Filtering Expression.

Filtering Options

When the Advanced Filter Button is clicked for a field, a criteria menu is displayed with filtering options appropriate to the field type being filtered. For example, a string-type field will have filter criteria “Equals”, “Contains” and so on, while a numeric-type field will have criteria like “Equals”, “Greater Than”, and so on.

When the user edits one of the filtering criteria Equals, Doesn’t Equal, or Included In, the first few unique values of the field are displayed as items in a dropdown menu to give them an idea of possible values. Users can fuzzy search the unique values of the field by simply entering a value in the criteria field.

Filtering with Expressions

Switching to the Custom Filtering Expression hides the Advanced Filter Buttons and reveals an input field for an expression expression. The Custom Filtering Expression is evaluated for every row of data. All rows where the expression evaluates as True will be displayed, and all other values will be excluded from the filter result.

The Custom Filtering Expression has the following Resolution Environment:

Default Context

Any default context currently being used by the Data Table Editor.

Default Data Table

The table being viewed/edited in the Data Table Editor.

Default Row

Row being processed.

Environment Variables

Standard variables only.

Consider the following example of a complex filter that can be implemented with the Custom Filtering Expression:

Suppose a database of employee information includes fields totalHoursWorked and totalExpendedSickLeave, and the filter must return a list of all employees with a ratio of totalHoursWorked to totalExpendedSickLeave less than 83. Such a filter requires that the values of two fields be compared for each row, which can be done only with the expression language.

An expression which filters for the desired result would be as follows:

{totalHoursWorked} / {totalExpendedSickLeave} < 83

This expression evaluates to True when the ratio of totalHoursWorked to totalExpendedSickLeave is less than 83, and as a result, only employees meeting this criteria will appear in the filtered table.

Class Instance List Filtering

If an class instance list is used as the data source for the editor, filtering rules update cause filtering of the whole class instance list rather than currently displayed instances only. Thus, new filtering rules may completely change currently visible records.

Was this page helpful?