The Properties Pane

The Page Designer's Properties pane displays the properties of a component that is currently selected on the canvas or in Code view and can be used to set metadata attributes such as ID, display name, and description. It also provides various properties to customize a component's layout, style, and behavior.

Component properties are organized in tabs in the Properties pane and can vary depending on the component. For example, here's the Properties pane of an input text component, showing the General, Data, Events, and All tabs; some components such as a table or list view collection component have an additional Quick Starts tab:
Description of component-properties-pane.png follows
Description of the illustration component-properties-pane.png

Here's an overview of what you can do in the different tabs:
Component Properties Description
General

Contains the most important properties of the selected component, such as layout and style. The slot value of a component inside a parent component's slot also shows here. Select the sub-component added to a slot (for example, a button's icon) and change its slot value to move it from the startIcon slot to the endIcon slot. This way, you can modify the slots of dropped components without accessing the HTML code.

The slot used by the sub-component is also visible in the sub-component's All tab and can be modified there (for example, to bind it to a variable).

Data

Contains properties that are expected to be bound to data. The General tab and All tab also contain properties that can be bound to variables and expressions. See Bind a Component to Data.

Events

Used to bind a component’s events to trigger action chains that define its behavior (for example, to open a URL when a button is clicked). See Start an Action Chain From a Component.

All

Contains more advanced component properties and shows all properties, including custom properties. Custom properties are those not defined in component metadata, for example, data-* attributes, and can be added by clicking + next to General Attributes.

Quick Starts

Contains a list of Quick Start wizards available for the component. When you add a collection component such as a table or list, this tab contains a list of wizards to help you add some actions that are typically associated with the component, such as mapping the collection to data and adding Create and Detail pages.

You can toggle Properties to hide or show the Properties pane.

Variables Picker

When working with a component's properties, you can bind a variable to the component, populating it with the data stored in the variable. For example, you might bind an Input Text component to a particular field from a REST endpoint, or bind a Heading component to a variable. To do this, you use the Variables picker, which you access by clicking the Select Variable icon that appears when you hover over a property.

Here's an example of how you can bind a component to a variable:

  1. Locate the component's property to bind the variable to, then click Select Variable to open the Variables picker. For example, you can find the Variables picker on an Input Text's Value property on the Data tab (shown on the left) or on a Heading's Text property (shown on the right):
  2. Select the variable available in the current scope, or click Create to create one.
    You should see an expression added to the property, something like [[ $flow.variables.userName ]]. You can extend this expression if needed within the property itself. For example, you can add Information and enclose the userName expression within single quotation marks to something like this:
    [[ " '"+$flow.variables.userName + "' Information"]]

    For complex expressions, you might want to use the Expression Editor.

Expression Editor

Some properties accept expressions that resolve to a single value at runtime. An expression is a string enclosed in [[...]], indicating that it should be evaluated. It can include variables, operators, functions, system properties, and the like.

To easily define expressions, use the Expression editor, which you access by clicking the Expression Editoricon that appears when you hover over a property that supports expressions.

While expressions can be defined for a variety of tasks, they are commonly used to set the default value on a variable (shown here on the left) or to bind a UI control to its data (shown on the right):
Description of props-visapp-expressioneditor.png follows
Description of the illustration props-visapp-expressioneditor.png

For example, here's how you can define an expression to display a user's full name in an Input Text component, based on the firstName and lastName variables:

  1. Switch to the component's Data tab and click Expression Editor .
  2. In the Expression editor, drag and drop the firstName and lastName variables onto the canvas to define your expression. Predefined variables, functions, and other properties are available to you within their defined scope on the left pane.

    Make sure you remove null on the canvas. Your final expression may look something like this:
    $variables.firstName + ' ' + $variables.lastName

    Note that $variables is a shortcut for variables in the current scope. So in a page, $variables is the same as $page.variables.

  3. Check your expression syntax to make sure it's valid and click Save.
The Expression editor supports standard JavaScript expression syntax, with some customization to make it work it with UI components in Visual Builder. Suppose you have a variable members with a field count and you need to display a message when there are more than 10 members. In JavaScript, you might code it like this:
members.count > 10 ? 'too many members (current value=' + members.count + ' while max value is 10)' : 'within reason'
When applied to a Text component in Visual Builder, the same expression would look like this:
<oj-bind-text value="[[ $variables.members.count > 10 ? 'too many members (current value=' + $variables.members.count + ' while max value is 10)' : 'within reason' ]]"></oj-bind-text>
Here are a few simple examples:
Use Case JavaScript Expression Expression in Visual Builder
To concatenate the firstName and lastName variables: firstName + ' ' + lastName $page.variables.firstName + ' ' + $page.variables.lastName
To check whether employee and job are not null or undefined, before trying to access jobTitle: employee?.job?.jobTitle $variables.employee?.job?.jobTitle
To calculate the total price of a row based on its price and quantity: row.price * row.quantity $current.row.price * $current.row.quantity

For help with standard expression syntax, see Expressions and Operators. For details on how to write efficient expressions when a referenced field might not be available or the field's value could be null, see How Do I Write Expressions If a Referenced Field Might Not Be Available Or Its Value Could Be Null?