PEGA SAE 7.4 - 6.2 - Creating Dynamic Content In User Views - How to configure field attributes for dynamic display, QUIZ
Which of the following sets represent action sets (event > action) in Pega Platform?
-- Double-click > Scan barcode/QR code :: Double-click is an event in Pega Platform -- Tab key > Add new work :: Pressing or tapping the Tab key is an event in Pega Platform.
You can configure field attributes for dynamic display using what settings?
-- Visibility -- Disable -- Required
You are configuring a Confirm and Pay view that includes a payment type selection list. One of the payment options is PayPal. PayPal requires users to confirm order details on the PayPal website. How do you configure the link to PayPal to display only when users select PayPal as their payment option?
Configure a visible when condition expression for the link control. :: You can use a Boolean expression to determine visibility. The link is visible when the Type =*whatever you want*.
KC: What is the advantage of selecting Run visibility condition on client and Run disabled content condition on client?
Configuring Visibility and Disable options to run on the client reduces the number of server trips and avoids page refreshes.
KC: What is your first consideration when configuring field attributes for dynamic display?
First identify the UI element target that you want to dynamically show and hide, enable and disable, or make required before deciding at which level (section, layout, or field) to apply the visible when condition.
How do you configure an action set on a button to clear user selections and then review the previous actions on the case?
First, configure a Click event with a Refresh action. Next, add a View History action to the event. ::You can add several actions to one event.
(setting) Always:
The UI element is always displayed
(Visibility/disable options) Run visibility condition on client
This option is displayed when you use the If not blank, If not zero, or Condition (expression) visibility options. The clipboard page includes all the possible data it can display. The application uses the data on the page to refresh the section based on this.
(Visibility/disable options) Reserve space when hidden
This option keeps the space surrounding the control open. This prevents the UI elements on the screen from repositioning when the visible content is displayed.
(setting) Condition (Expression)
Uses a Boolean expression to determine visibility; visible when the expression returns true
(setting) Condition (When rule)
Uses a when rule to determine visibility; visible if the when rule returns true
(setting) If not Blank
Visible if the value of that field is not blank
(setting) If not Zero
Visible if the value of that field is not zero
KC: You use visible when conditions:
to hide or display data fields based on a value entered by users.