Design a page variant in UIB
Configure a UI Builder page variant to pass from a workspace modal into the variant. This step acts as part of the process to configure an action button to open a custom modal.
Before you begin
Complete the following actions:
- Create a form action
- Open your record page in UIB or create a page variant in UIB
Role required: admin
Procedure
Open a page variant in UI Builder.
Add components to display on the page by selecting +Add component under the Body element.
Select the added component and select the Table field.
Switch the setting to Bind data and dot-walk to the table prop by entering
@context.props.table.Select the Title field, and switch to Script mode.
Enter the following script and pass the sysID received through the URL parameter as a JS template variable.
function evaluateProperty({ api, helpers }) { return `Only ${api.context.props.sysId}`; }Select Apply for the script and select Save.
Result
The table and sysID variables are configured to be passed from the modal through the URL into the variant.