Exercise: Create a UI Screen
This page lists an exercise for creating a minimal UI and source mapping for the /test CRUD endpoint.
Last updated
This page lists an exercise for creating a minimal UI and source mapping for the /test CRUD endpoint.
This exercise creates a tiny admin UI for the test collection. It assumes you already created the backend CRUD endpoint in Exercise: Test State.
You can access the Design app.
The /test CRUD endpoint exists under train_crud.
You can reach the UI at https://[YOUR_ADMIN_UI_DOMAIN].
A new UI with ID test.
A lister that shows test records.
An editor with a single name field.
A source mapping that points the UI to the train_crud/test endpoint.
A menu entry under the Training app.
Open the Source screen from the Design app.
Unless you changed routing, the UI is at https://[YOUR_ADMIN_UI_DOMAIN]/app/design/common/source.
Click Create New.

Configure the source to target the train_crud/test endpoint. This is what connects your UI actions to CRUD calls.
Fastest path is duplicating the existing dummy source. Then change any dummy path segments to test. Save as a new source.
Menu entry not visible: confirm you edited the Training app. Save it.
Lister is empty after creating records: confirm source points to train_crud/test.
Save fails: confirm the backend /test endpoint exists. Retry after rebuild.
Last updated
