Create dynamic filtered card displays
Create an interactive card layout to display records, add a dropdown to filter visible cards by name, and configure each card to open the full record in another UI Builder page when selected.
Before you begin
Role required: ui_builder_admin
About this task
This example shows how to bind data to components so you can display record information in custom layouts. For example, you can present records as selectable cards rather than in a traditional list view. For this procedure, the data comes from the Incident table.
| Component | Documentation links |
|---|---|
| Card Base Container | |
| Dropdown | |
| Heading | |
| Highlighted value | |
| Label value | |
| Stylized text |
Procedure
Add a repeater linked to a data resource and create the card containers that display each record.
- Navigate to All > Now Experience Framework > UI Builder.
-
Open an experience to work in or create an experience by selecting Create > Experience.
See Configure how users interact with your applications in UI Builder for more information on creating experiences.
-
Create a page from scratch.
For more information about how to create a page, see Create a page in UI Builder.
-
Create a data resource to pull records from the Incident table.
Data resources expose data from tables and records to the page. In this example, we add a data resource to pull records from the incident table so we can display them using components. For more information, see Add and configure data resources to a page.
- In the Data and scripts drawer, under Data resources, select + Add data resource.
- Select Look up multiple records and then select Add.
- Select the look_up_multiple_records_1 ID to open the Data resource details form.
-
Replace the text in the Data resource label field with Incident lookup.
The Data resource ID field auto-populates.
- Select Apply.
-
In the Edit Incident lookup dialog, fill in the fields:
Field Action Table Enter incident, then select it from the list. Return fields - Select + Add.
- Enter Caller, select it to add it to the Selected column, then clear the search box.
- Repeat the above step for Priority and Short description.
- Select Apply.
Max results Enter 25. - Select the X in the upper right to close the dialog.
- Select Save.
-
Add a single column layout to hold the components.
- In the content tree, under Body, select + Add content.
- Select Single column and then select + Add.
-
With Column 1 selected in the content tree, navigate to Layout in the configuration panel and set the Direction to
Row.
-
Add and configure a repeater on your page with data binding.
Data binding is the process of associating data exposed by a data resource with a component. In this example, we bind the results of our Incident lookup data resource to the Data array property of the repeater component. For more information, see Connect data components.
- In the content tree, under Column 1, select + Add content.
- Enter Repeater, then select it in the toolbox and then select Add.
- Select Cancel to close the preset window.
-
Keeping Repeater 1 selected, in the configuration panel, hover over the Data array field and select the bind data icon
.
- In the Bind data to Data array dialog, under Data types, select Data resource.
-
Select the Incident lookup pill, then double-click or drag the results pill to move it to the area above.
Figure 1. Bind data to Data array - Select Apply to confirm the binding.
-
In the configuration panel, select the Styles tab, select Enable styles, then fill in the fields:
Field Value Type Grid Columns 4 Gap S - Select Save.
-
Create the card display.
- In the content tree, under Repeater 1, select + Add content.
- Enter Card Base Container, select the component, then select + Add.
- In the configuration panel, select the Configure tab and set the Interaction to Click.
- In the configuration panel, select the Styles tab and set the Width to 300px.
-
Set the Height to 200px.
Add components to each card and configure them to display record details by binding the appropriate fields.
-
Add components to the card base container.
- In the content tree, under Card Base Container 1, select + Add content.
-
Add the following components in the order listed below and edit each in the configuration panel:
Tip:To keep all components nested in Card Base Container, add the first component, then use Add after from the configure icon
for each one that follows.
If a preset window appears, select Cancel to close it.
- Heading: No initial configuration required
- Label value: In the Configure tab, in the Label field, enter Caller:
- Stylized text: In the Configure tab, set the HTML tag to Paragraph
- Highlighted value: In the Styles tab, set the Width to 100px
- Select Save.
-
Bind data from the incident records to the components we added in the previous step.
Component Field Path Heading Label value > number > displayValueLabel value Value value > caller_id > displayValueStylized text Text value > short_description > displayValueHighlighted value Label value > priority > displayValue- In the content tree, select the component listed in the table.
-
In the configuration panel, on the Configure tab, hover over the specified field and select the bind data icon
.
-
In the data binding modal:
- On the left, select Repeater under Data types.
- On the right, under Pill view, follow the path listed in the table by selecting each pill in order (for example, for Heading, select value, then number, then displayValue).
- When you reach the final pill (displayValue), double-click or drag it to move it to the area above, then select Apply.
-
Repeat the process for each row in the table.
- Select Save.
-
Use a script to define the color of the priority for each record.
- In the content tree, select Highlighted value 1.
-
In the configuration panel, on the Configure tab, hover over Color and select the bind data icon
.
-
Select the Use script icon
in the upper right.
-
Replace the existing code with the following:
function getPriorityColor(record) { let priority = record.api.item.value.priority.value; switch (priority) { case '1': return 'critical'; case '2': return 'high'; case '3': return 'moderate'; case '4': return 'low'; case '5': return 'gray'; default: return 'gray'; } } - Select Apply.
Verify that the highlighted value changes color depending on the priority of the record.
Configure a dropdown event to update a client state parameter and refresh the data resource, filtering the card display.
-
Create a client state parameter to track user selections.
The client state parameter can be modified by components when they trigger events. For more information, see Client state parameters.
- In the Data and scripts drawer, next to Client state parameters, select the + icon.
-
In the Edit client state parameters dialog, fill out the fields:
- Name: selected_caller
- Type: String
- Initial value: empty
- Select Apply.
-
Edit the data resource to use the client state parameter as a conditional value.
- In the Data and scripts drawer, select the Incident lookup data resource.
-
Select Edit conditions.
- In the Conditions dialog, enter Caller in the first field and select it from the list.
- Leave the second field as is.
-
Hover over the third field and select the bind data icon
.
-
In the data binding modal, select Client states, then double-click or drag the
selected_callerpill to move it to the area above. - Select Apply to confirm the binding.
-
Select Apply to save the condition.
- Select the X in the upper right to close the Incident lookup dialog.
-
Create a second data resource to query users from the user table.
- In the Data and scripts drawer, select the +, then select Data resource.
- Select Look up multiple records and then select Add.
-
Select the look_up_multiple_records_1 ID to open the Data resource details form.
-
Replace the text in the Data resource label field with sys_user_lookup.
The Data resource ID field auto-populates.
- Select Apply.
-
In the Edit sys_user_lookup dialog, fill in the fields:
Field Action Table Enter User (sys_user) and then select it from the list. Return fields - Select + Add.
- Enter Name, then select it from the list to add it to the Selected column.
- Select Apply.
Order by Enter Name, then select it from the list. Max results Enter 250. - Select the X in the upper right to close the dialog.
- Select Save.
This data resource looks up users from the user table. We will reference this data to populate the dropdown in the next step. -
Add and configure a dropdown component.
-
In the content tree, hover over Column layout 1 and select the Configure icon
.
- Select Add before.
- Search for Dropdown, select it from the toolbox and then select Add.
-
In the configuration panel, navigate to the specified tab and configure the following fields:
Tab Action Configure In the Placeholder text field: Enter Select a caller. Configure In the Variant field: Select Primary. Configure In the List items field: - Hover over the field and select the bind data icon
.
- In the data binding modal, select the Use script icon
.
- Replace the existing code with the following:Tip:You can select the format code icon
to make the code more readable.
function evaluateProperty({ api, helpers }) { const userArray = api.data.sys_user_lookup.results; let outputArray = []; for (let i = 0; i < userArray.length; i++) { const obj = { 'id': `${userArray[i]._row_data.uniqueValue}`, 'label': `${userArray[i].name.displayValue}` }; outputArray.push(obj); } return outputArray; } - Select Apply.
Styles Width: Enter 200. Styles Padding: Select Padding, then choose M from the list. - Hover over the field and select the bind data icon
-
In the content tree, hover over Column layout 1 and select the Configure icon
-
Configure the dropdown with events so that it can modify the client state parameter we created.
- With Dropdown 1 selected in the content tree, select the Events tab in the configuration panel, then select Add event mapping.
- Select the Selected items changed event, then select Continue.
- Select the Set client state parameter handler, then select Continue.
-
Set the following properties:
Field Action Client State Parameter Name Select selected_caller from the list. Value to use after triggering event - Hover over the field and select the bind data icon
.
- Select Data types, then Event payload.
- Under Pill view, double-click or drag the value pill to move it to the area above.
- Select Apply to confirm the binding.
- Select Add.
- Hover over the field and select the bind data icon
- In the Events tab in the configuration panel, select Add handler underneath the event we added in the previous step.
-
Locate Incident lookup (1), select the REFRESH handler, then select Continue.
- Select Add.
- Select Save.
After configuring the dropdown, selecting a caller updates theselected_callerclient state parameter and refreshes the data resource to display that caller's records.
Configure each card so that selecting it opens the record page using the sys_id from the repeater data.
-
Create another page in your experience that opens the record.
- Return to the experience view by selecting the name of your experience (for example, "Demo Experience") in the upper left.
- Select the + next to Pages, then select Create a new page.
- Hover over the Standard record template and select Use template.
- Name your page Incident record page and select Continue.
- Select Looks Good, then select Create.
- Return to your original page by selecting the name of your experience in the upper left, then choosing your page from the experience view.
-
Add an event to the cards so that selecting a card opens its record on the page we created.
- Select Card Base Container 1 in the content tree.
- In the configuration panel, select the Events tab, then select Add event mapping.
- Select the Card clicked event, then select Continue.
- Select the Open page or URL handler, then select Continue.
- Select Pages in current experience.
- Select Incident record page.
-
In the form, fill in the fields:
Field Action table Enter incident sysId - Hover over the sysId field and select the bind data icon
.
- Locate Data types on the left and select Repeater.
- In the Pill view, select value, then _row_data, then double-click uniqueValue.
- Select Apply.
- Hover over the sysId field and select the bind data icon
-
Select Select.
- Select the check box to enable the Open in new tab property.
- Select Add.
- Select Save.
-
Preview and test the page.
- Select Preview.
-
In the dropdown, select a user such as "Fred Luddy," "Carol Coughlin," or "Bow Ruggeri" to filter the cards.
Note:Some users do not have related incident records, so selecting those users will result in no cards being displayed.
- Select a card to view the full record in a new tab.