# Summary page

## Adding your own CSS files

\[SINCE Orbeon Forms 2017.1]

In addition to `oxf.fr.css.custom.uri`, you can also use the following property, which apply only to the Summary page:

```xml
<property
    as="xs:string"
    name="oxf.fr.summary.css.custom.uri.*.*"
    value="/forms/acme/assets/acme-summary.css"/>
```

See also [Adding your own CSS](https://doc.orbeon.com/configuration/properties/form-runner/..#adding-your-own-css).

## Adding your own JavaScript files

\[SINCE Orbeon Forms 2017.1]

In addition to `oxf.fr.js.custom.uri`, you can also use the following property, which apply only to the Summary page:

```xml
<property
    as="xs:string"
    name="oxf.fr.summary.js.custom.uri.*.*"
    value="/forms/acme/assets/acme-summary.js"/>
```

See also [Adding your own JavaScript](https://doc.orbeon.com/configuration/properties/form-runner/..#adding-your-own-javascript).

## Summary page size

```xml
<property
    as="xs:integer"
    name="oxf.fr.summary.page-size.*.*"
    value="10"/>
```

Number of rows shown in the Summary page.

## Created and Last Modified columns

By default, the Summary page shows a Created and Modified columns:

![Created and Last Modified](https://4129616727-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LEkBiSDvlXs3VWiO0Zu%2Fuploads%2Fgit-blob-7fb63f99d87dafe9e8ea9c24fe20077b98f9fd5a%2Fsummary-created-last-modified.png?alt=media)

You can remove either one of those columns by setting the appropriate property value to `false`.

\[SINCE Orbeon Forms 2026.1] These properties can also be overridden per form using the [Summary Page tab](https://doc.orbeon.com/form-builder/form-settings/summary-page) of the Form Settings dialog.

```xml
<property
    as="xs:boolean"
    name="oxf.fr.summary.show-created.*.*"
    value="true"/>

<property
    as="xs:boolean"
    name="oxf.fr.summary.show-last-modified.*.*"
    value="true"/>
```

## Show the workflow stage

\[SINCE Orbeon Forms 2020.1]

See [Workflow stage](https://doc.orbeon.com/form-runner/features/workflow-stage#showing-the-workflow-stage-in-the-summary-page).

\[SINCE Orbeon Forms 2026.1] This property can also be overridden per form using the [Summary Page tab](https://doc.orbeon.com/form-builder/form-settings/summary-page) of the Form Settings dialog.

## Show created by and last modified by users

\[SINCE Orbeon Forms 2021.1]

You can add either one of those columns by setting the appropriate property value to `true`.

\[SINCE Orbeon Forms 2026.1] These properties can also be overridden per form using the [Summary Page tab](https://doc.orbeon.com/form-builder/form-settings/summary-page) of the Form Settings dialog.

```xml
<property 
    as="xs:boolean" 
    name="oxf.fr.summary.show-created-by.*.*"                           
    value="true"/>
<property 
    as="xs:boolean" 
    name="oxf.fr.summary.show-last-modified-by.*.*"                   
    value="true"/>
```

## Buttons on the Summary page

See [Configuring Summary page buttons](https://doc.orbeon.com/form-runner/advanced/buttons-and-processes/summary-page-buttons-and-processes#configuring-summary-page-buttons).

## Versioning

\[SINCE Orbeon Forms 2020.1 and 2019.2.3] The following property allows you to configure whether the [Summary page](https://github.com/orbeon/orbeon-forms-doc/blob/master/configuration/properties/form-runner/feature/summary-page.md) shows data:

* if set to `true`: for one version at a time, which is the default;
* if set to `false`: for all data across form definition versions, as it used to be the case up until Orbeon Forms 2018.1.

Even when set to `false`, if the `form-version` request parameter is passed to the Summary page, it will not ignore the request parameter and will only show data created with that version of the form definition.

```xml
<property 
    as="xs:boolean"
    name="oxf.fr.summary.show-version-selector.*.*"
    value="false"/>
```

[\[SINCE Orbeon Forms 2023.1\]](https://doc.orbeon.com/release-notes/orbeon-forms-2023.1) When the property is set to `false`, links to the Summary page from the Published Forms and Landing pages will not include the `form-version` request parameter.

## See also

* [Detail page configuration properties](https://doc.orbeon.com/configuration/properties/form-runner/form-runner-detail-page)
* [Summary Page tab of the Form Settings dialog](https://doc.orbeon.com/form-builder/form-settings/summary-page)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.orbeon.com/configuration/properties/form-runner/form-runner-summary-page.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
