Before You Begin
In this tutorial, you'll learn how to lay out the pages and components of your application, and how to create a report page.
Time to Complete
Approximately 25 minutes
Background
Oracle Visual Builder Cloud Service is a visual development tool for creating web and mobile applications by simply dragging and dropping UI components onto a page. You don't need any programming experience to develop an application.
Scenario
You'll edit the Human Resources (HR) application that you created in the Getting Started with Oracle Visual Builder Cloud Service tutorial, and learn how to:
-
Design the application pages using Layout and Input components
-
Edit properties of the components using Property Inspector
-
Create a report page in your application
You'll edit the HR Application schema to add two
new fields, Job
and Address
,
to the Employee
business object as
shown in the following diagram.

Context
Before you begin this tutorial, make sure that you've created the HR Application application as described in the Getting Started with Oracle Visual Builder Cloud Service tutorial.
What Do You Need?
-
Access to Oracle Visual Builder Cloud Service
-
A supported browser (see Known Issues for Oracle Visual Builder Cloud Service for more information)
Managing Pages of an Application
In this section, you'll learn how to edit the design of the application pages using the Layout and the Input components. You'll also learn how to use the Property Inspector to edit the properties of the components, and how to add a new page to the application.
Using the Layout Components
In this section, you'll design the existing Create Employee, Edit Employee, Create Department, and Edit Department application pages using the Layout components.
-
In the web browser, log in to Oracle Visual Builder Cloud Service.
-
On the Home page, click HR Application 1.0.
View ImageDescription of this image -
In the Page Designer, open the page menu and select Create Employee.
View ImageDescription of this image -
From the Components palette, drag and drop the Two-Column Layout component onto the Create Employee page below the Department field.
View ImageDescription of this image -
Drag and drop the Name field of the Create Employee page into the left column of the Two-Column Layout component.
View ImageDescription of this image -
Similarly, drag and drop the other fields of the page into the left and right columns of the Two-Column Layout component. Move the Email field to the left column, and move the Hire Date and Department fields to the right column.
View ImageDescription of this image -
If necessary, drag the left and right widths of the fields to adjust their widths to 100%.
View ImageDescription of this image -
Open the page menu and click Edit Employee.
View ImageDescription of this image -
Drag and drop the Two-Column Layout component onto the Edit Employee page and arrange the fields the same way you did for the Create Employee page.
View ImageDescription of this image -
Open the page menu and select the Create Department page.
-
Drag and drop a Two-Column Layout component onto the page. Move the Name field to the left column, and move the Location field to the right column.
View ImageDescription of this image -
Open the page menu and select the Edit Department page.
-
Drag and drop a Two-Column Layout component onto the page and arrange the fields the same way you did for the Create Department page.
View ImageDescription of this image
Using the Property Inspector
In this section, you'll use the Property Inspector to edit the properties of Employee business object pages.
You'll configure the Name
, Hire
Date
, and Email
input
fields as Required fields.
You'll also configure the Hire Date
field to show more input options in the Date
Picker dialog box.
-
Open the page menu and select the Create Employee page.
-
Select the Name field.
View ImageDescription of this image -
For a text field, the Property Inspector provides six tabs: Properties, Data, Actions, Responsive, Roles, and Style. Some components have fewer tabs. In the Properties pane, select the Required check box.
View ImageDescription of this image After you select the Required check box, an asterisk appears before the Name field.
View ImageDescription of this image -
Select the Hire Date field.
View ImageDescription of this image -
In the Properties tab of the Hire Date properties pane, select the Required check box.
View ImageDescription of this image -
Click More Date Picker Options.
View ImageDescription of this image -
Select the Show Today Button, Allow Month Change, and Allow Year Change check boxes.
View ImageDescription of this image -
Select the Email field.
View ImageDescription of this image -
In the Properties pane, select the Required check box.
View ImageDescription of this image After you select the Required check box, an asterisk appears before the Email field.
-
Click the Create Employee header.
View ImageDescription of this image -
In Page Header Properties, change the Text value to
Add Employee
.View ImageDescription of this image When you update the Text value of the Page Header, you edit the title of the page. The page name in the page menu and other places will remain Create Employee.
The Create Employee page should look like this.
View ImageDescription of this image -
Open the page menu and click Edit Employee.
-
Edit the properties of the Name and Hire Date fields of the Edit Employee page the same way you edited them for the Create Employee page (steps 2-7).
View ImageDescription of this image -
Select the Email field.
View ImageDescription of this image -
In the Email Properties pane, select the Read-only check box.
Typically, an email address once assigned to an employee is not changed.
View ImageDescription of this image -
Open the page menu and select the Edit Department page.
-
Select the Name field.
View ImageDescription of this image -
In the Text Field Properties pane, select the Required check box.
View ImageDescription of this image You already configured the Name field of the Create Department page as Required in the Getting Started with Oracle Visual Builder Cloud Service tutorial.
-
Click the page header, then click the Responsive tab.
View ImageDescription of this image -
For a page header, the only responsive property you can set for the device canvas areas is whether the component is visible or not. Click the two fields on the page and verify that visibility is the only available component for them, too.
View ImageDescription of this image -
Open the page menu and select the Employees page.
-
Click in the table and view the Responsive properties for the Table component. You can change the table from a standard view to a row view. You can change the visibility of each column and of the table as a whole.
View ImageDescription of this image -
Select Phone Portrait from the Set Properties For drop-down list and notice that most columns are not visible in the canvas area. Deselect the Email and Hire Date options so that only the Name and Department columns are displayed.
View ImageDescription of this image -
Click Tablet landscape to return to the canvas view you were using. All the columns are visible again.
View ImageDescription of this image
Adding a Page to an Application
In this section, you'll add a Details type page to the HR Application. You'll configure the Details page to show a Department-Employees report that uses a query to list all employees of the selected department.
-
Open the page menu and click New Page.
View ImageDescription of this image -
On the first page of the Create Page wizard, enter the following:
-
Page Title:
Department-Employees Report
-
Page Type:
Details
View ImageDescription of this image Click Next.
-
-
Select Department as the page's associated business object.
View ImageDescription of this image -
Click Create.
-
In the Department-Employees Report page, open the Components palette if it is not already open.
View ImageDescription of this image -
Drag and drop a Two-Column Layout component onto the report page.
View ImageDescription of this image -
Drag a Text Field component and drop it into the left column of the Two-Column Layout component.
View ImageDescription of this image -
In the pop-up box, enter the following:
-
Business Object Field: Click the
Existing
toggle button -
Business Object:
Department
(automatically populated) -
Field ID: Select
name
from the drop-down list -
Label: Update to
Department Name
View ImageDescription of this image Click the
icon to save the details.
-
-
Drag a Combo Box component and drop it into the right column of the Two-Column Layout component.
View ImageDescription of this image -
In the pop-up box, enter the following:
-
Business Object Field: Click the
Existing
toggle button -
Business Object:
Department
(automatically populated) -
Label:
Location
(automatically populated) -
Field ID:
ref2Location
(automatically populated)
View ImageDescription of this image Click the
icon to save the details.
-
-
Drag and drop a Table component onto the report page below the Two-Column Layout component.
View ImageDescription of this image -
In the Data page of the Table Creation wizard, select Employee.
View ImageDescription of this image -
In the Mapping Page, drag and drop the Name and Email fields into the Selected area and click
.
View ImageDescription of this image -
In the Object Actions page, click Off for all default actions (Create, Edit, Delete, and Details) and click
.
View ImageDescription of this image -
In the Options page, click the On toggle button of Query.
View ImageDescription of this image -
In the first list, select Department. In the third list, select <Department record ID>. If an error message appears, you can safely ignore it.
View ImageDescription of this image -
In the Table Summary field, enter text like this:
This table shows the name and email address of each employee in the department.
View ImageDescription of this image -
Click Finish.
The Department-Employees Report page should look like this.
View ImageDescription of this image After creating the page, you must associate the page with an action that will open it.
-
Open the Page menu and select Departments.
-
Click the Name column of the Departments table and click the Actions tab in the Table Properties pane.
View ImageDescription of this image -
In the Actions tab, click + Add Action.
View ImageDescription of this image -
Click the predefined action View Department.
View ImageDescription of this image In Live mode or in Test Application mode, clicking the Name column link in the Departments page will open the Department-Employees Report page that will list all employees of the selected department.
View ImageDescription of this image -
Click the
button in the toolbar.
-
In the Departments page, click a department Name link to view all employees of the selected department.
View ImageDescription of this image Click Back to Designer to return to the Page Designer.
Want to Learn More?
-
Getting Started with Oracle Visual Builder Cloud Service OBE
-
Modifying Button Behavior in Oracle Visual Builder Cloud Service OBE
-
Editing a Business Object in Oracle Visual Builder Cloud Service OBE
-
Staging and Publishing an Application in Oracle Visual Builder Cloud Service OBE
-
Using Oracle Visual Builder Cloud Service in the Oracle Help Center
-
Designing Pages in Oracle Visual Builder Cloud Service in Using Oracle Visual Builder Cloud Service
-
Working with Business Objects in Using Oracle Visual Builder Cloud Service
-
Managing Application Data in Using Oracle Visual Builder Cloud Service