Displaying Data (Views)
Overview
PhixFlow stores data in tables.
Views Consist of:
Attributes
Attributes from the base table
Specify which attributes to include in your view. You can hide attributes that you want access to but do not necessarily want a user to see, such as the UID of a record.Attributes from related tables.
These are the attributes available to the view as the table they originate from shares a relationship with the base table as defined in the ERDs; see Entity Relationship Diagrams. Views which contain these type of attributes are referred to as a relational view.
Records:
For each table, the view includes records specified in the tables default period. This can be all data (usually for transactional data) or only the latest.
Sorting and Filtering
You can filter and sort records. See Filtering and Sorting Data.
Components
Data can be displayed in different ways.
- : the attributes form the grid columns and data records are displayed in rows. PhixFlow can add scroll bars or paging where grids cannot be accommodated by the screen size.
- : rather than using a form to display data, you can use a card. Any palette item can be added to a card which offered great flexibility.
- : attributes are represented in different segments of a pie chart, with values aggregated to represent the segment size.
- : attributes are represented on the vertical axis, with values aggregated and represented in the bar length.
- : attributes are represented on the horizonal axis, with values aggregated and represented in the bar height.
- : attributes are represented as points on a horizontal axis, with values aggregated and setting the point position on the vertical axis.
- : attributes are represented by different fields. Usually a form is linked to an action on a grid. For example, the application user selects a line on a grid, and the form displays the data from that record.
Form and card components are special data components, as they can contain other elements, usually fields and labels.
How to Create and Display Data
For more information on setting up charts and graphs, see Creating Dashboards and Reports.
Step 1: Select a Table
There are several ways to show data on a screen:
From an Entity Relationship Diagram (ERD), select a table and use the Create Screen option; see Creating a Screen from an ERD Table.
Drag a Table from the repository or a tables icon from its properties directly onto a screen.
A list of available tables is available by clicking the Tables button on the toolbar.
This method will typically set the data for the backing form to that of the table.
PhixFlow asks you how you want the data to be displayed, select the desired option:
The data is added to the screen.
Step 2: Select the Attributes
Drag attributes from the Available Attributes window onto the screen.
Start with attributes from the current (base) table.
Optionally, click on related tables to show additional attributes that are available.
When you have dragged all the attributes you require, close the window.
These attributes can be changed by selecting the
button in the toolbar to add new attributes or right-clicking and selectingto change existing attributesSee Available Attributes Window for details.
Step 3: Apply Filtering and Sorting
Optionally, specify if you want to apply any filters or sort orders to the data:
Reusing Views
Once you have created a view, you can reuse it in multiple locations. In the repository navigate the the table which owns the view, the base table, open the table and in the views section drag the desired view onto your screen. Be aware however that changes made to the view will affect all instances of that view.
Form Field Name
When you drag attributes from the Attribute Selection window or table onto a form, PhixFlow adds a field and label for each attribute. By default, the label is the attribute's name. However, for an attribute from a related table, the Display Name will be shown and not the foreign key value.
For example:
Example | Base Table | Related Table | Value Displayed | Form Field Label |
|---|---|---|---|---|
syntax | table.UID | RelatedTable.ForeignKey | RelatedTable Attribute set to DisplayName | - |
Example Syntax | Company.UID | Supplier.RelatedCompany | Supplier attribute set to RelatedCompanyName | Related Company Name |
Example Values | 1024 | 1024 | "Cloud and Pixel Ltd" | Related Company Name |
For information about primary and foreign keys and the Display Name option; see Entity Relationship Diagrams.
If a form field or dynamic text field exists on a screen, it will link to an attribute in the data backing the screen by name, however you can also right-click on these components and select Change Backing Attribute to link it to any available attribute.