Design a page variant in UIB

  • 릴리스 버전: Australia
  • 업데이트 날짜 2026년 03월 12일
  • 소요 시간: 1분
  • 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.

    시작하기 전에

    Complete the following actions:

    Role required: admin

    프로시저

    1. Open a page variant in UI Builder.
    2. Add components to display on the page by selecting +Add component under the Body element.
    3. Select the added component and select the Table field.
    4. Switch the setting to Bind data and dot-walk to the table prop by entering @context.props.table.
    5. Select the Title field, and switch to Script mode.
    6. 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}`;
      }
    7. Select Apply for the script and select Save.

    결과

    The table and sysID variables are configured to be passed from the modal through the URL into the variant.