Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion docs/PxWeb2/documentation/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,10 @@ root/content
}
}
]
},
"noResultSearchHelp": {
"enabled": true,
"helpText": []
}
},
"footer": {
Expand Down Expand Up @@ -476,7 +480,13 @@ root/content
`enabled` is `true`, the application renders the **`DetailsSection` component**.
This section can contain multiple entries, and each entry may be either a
`textBlock` (with `header` and `text`) or a `links` block (with `header` and a
list of `items`). Links described in `items` have `text`, `url`, and an optional `openInNewTab` boolean. If `openInNewTab` is `true`, the link opens in a new browser tab.
list of `items`). Links described in `items` have `text`, `url`, and an optional
`openInNewTab` boolean. If `openInNewTab` is `true`, the link opens in a new
browser tab.
- **startPage.noResultSearchHelp** – Optional section displayed below
the “no results” message when no tables match the search or filters.
When `enabled` is `true`, each string in the `helpText` array is shown
as a separate list item under a help heading.

- **footer**
One or more footer columns with `header` and list of `links`. If links have `external` set to `true`, they automatically will have the icon for external links and will open in a new tab. See example above.
Expand Down