In accordance with the Meta Declaration, the application must have views for the following purposes:
Assign VPSes to users in the process of user creation
Present VPS resources in the list of users
Manage VPS resources in a user profile
In this document:
When creating or modifying a VPS, an application view initiates the VPS structure from the
newvps.json
file. The latter must be extended with the new APS type components:
A property that shows a user whom a VPS is assigned.
A link with a user.
This section continues the demo project from the previous step.
In the ui/wizard/newvps.json
file, declare the new relationship and property as follows:
"user": {
"aps": {
"link": "strong",
"id":""
}
},
"userName": ""
This starts the development of the presentation logic. The next sections walk you through creation and updates of the UI source code.
The project files you are creating and updating are similar to the respective files in the
sample package
.